aboutsummaryrefslogtreecommitdiff
path: root/src/service.vala
diff options
context:
space:
mode:
authorRobert Tari <robert@tari.in>2025-05-08 23:07:09 +0200
committerRobert Tari <robert@tari.in>2025-05-08 23:07:09 +0200
commit2647235691ad8e6b9c06cc5feff4d362c85e37ab (patch)
tree442184e910e2fed27cc865c4f0162e1d843339de /src/service.vala
parent9dad6b4b1aaecd3ee02ac9d1e4241771ddf2ae25 (diff)
downloadayatana-indicator-bluetooth-2647235691ad8e6b9c06cc5feff4d362c85e37ab.tar.gz
ayatana-indicator-bluetooth-2647235691ad8e6b9c06cc5feff4d362c85e37ab.tar.bz2
ayatana-indicator-bluetooth-2647235691ad8e6b9c06cc5feff4d362c85e37ab.zip
Add desktop greeter profile
Fixes https://salsa.debian.org/ubports-team/lomiri/-/issues/44
Diffstat (limited to 'src/service.vala')
-rw-r--r--src/service.vala3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/service.vala b/src/service.vala
index 524175d..80ccea6 100644
--- a/src/service.vala
+++ b/src/service.vala
@@ -1,5 +1,6 @@
/*
* Copyright 2013 Canonical Ltd.
+ * Copyright 2025 Robert Tari
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
@@ -16,6 +17,7 @@
* Authors:
* Charles Kerr <charles.kerr@canonical.com>
* Robert Ancell <robert.ancell@canonical.com>
+ * Robert Tari <robert@tari.in>
*/
/**
@@ -54,6 +56,7 @@ public class Service: Object
profiles = new HashTable<string,Profile> (str_hash, str_equal);
profiles.insert ("phone", new Phone (bluetooth, actions));
profiles.insert ("desktop", new Desktop (bluetooth, actions));
+ profiles.insert ("greeter", new Greeter (bluetooth, actions));
}
public int run ()