aboutsummaryrefslogtreecommitdiff
path: root/src/main.vala
diff options
context:
space:
mode:
Diffstat (limited to 'src/main.vala')
-rw-r--r--src/main.vala4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/main.vala b/src/main.vala
index 1df55c3..7af617d 100644
--- a/src/main.vala
+++ b/src/main.vala
@@ -7,7 +7,9 @@ main (string[] args)
Intl.bindtextdomain (Config.GETTEXT_PACKAGE, Config.GNOMELOCALEDIR);
Intl.textdomain (Config.GETTEXT_PACKAGE);
- var service = new BluetoothIndicator ();
+ var bluetooth = new Bluez (new KillSwitch ());
+ var service = new BluetoothIndicator (bluetooth);
+
service.run ();
return Posix.EXIT_SUCCESS;