diff options
author | Ted Gould <ted@gould.cx> | 2014-02-12 17:07:33 -0600 |
---|---|---|
committer | Ted Gould <ted@gould.cx> | 2014-02-12 17:07:33 -0600 |
commit | 0b76536b27f57db75a101e8ce7e3f75b7cddf57c (patch) | |
tree | c70a1c8391570c442c36071b3e6cb41f645f7716 /src/main.c | |
parent | 11105537ec91c601fdf0012ed69dc2d64aeea3d4 (diff) | |
download | ayatana-indicator-sound-0b76536b27f57db75a101e8ce7e3f75b7cddf57c.tar.gz ayatana-indicator-sound-0b76536b27f57db75a101e8ce7e3f75b7cddf57c.tar.bz2 ayatana-indicator-sound-0b76536b27f57db75a101e8ce7e3f75b7cddf57c.zip |
Detect which player list we need at startup
Diffstat (limited to 'src/main.c')
-rw-r--r-- | src/main.c | 8 |
1 files changed, 7 insertions, 1 deletions
@@ -21,7 +21,13 @@ main (int argc, char ** argv) { /* Initialize libnotify */ notify_init ("indicator-sound"); - MediaPlayerList * playerlist = MEDIA_PLAYER_LIST(media_player_list_mpris_new()); + MediaPlayerList * playerlist = NULL; + + if (g_strcmp0("lightdm", g_get_user_name())) { + playerlist = MEDIA_PLAYER_LIST(media_player_list_greeter_new()); + } else { + playerlist = MEDIA_PLAYER_LIST(media_player_list_mpris_new()); + } service = indicator_sound_service_new (playerlist); result = indicator_sound_service_run (service); |