aboutsummaryrefslogtreecommitdiff
path: root/src/main.vala
blob: 7af617d307d9e755c98862afd1385e757809b199 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16

public static int
main (string[] args)
{
  Intl.bind_textdomain_codeset (Config.GETTEXT_PACKAGE, "UTF-8");
  Intl.setlocale (LocaleCategory.ALL, "");
  Intl.bindtextdomain (Config.GETTEXT_PACKAGE, Config.GNOMELOCALEDIR);
  Intl.textdomain (Config.GETTEXT_PACKAGE);

  var bluetooth = new Bluez (new KillSwitch ());
  var service = new BluetoothIndicator (bluetooth);
 
  service.run ();

  return Posix.EXIT_SUCCESS;
}