aboutsummaryrefslogtreecommitdiff
path: root/src/main.vala
blob: 89c583b67657af99ced02b7e936ee1e5c1534dda (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 RfKillSwitch ());
  var service = new BluetoothIndicator (bluetooth);
 
  service.run ();

  return Posix.EXIT_SUCCESS;
}