diff options
Diffstat (limited to 'data')
-rw-r--r-- | data/CMakeLists.txt | 22 | ||||
-rw-r--r-- | data/indicator-sound.desktop.in | 9 |
2 files changed, 30 insertions, 1 deletions
diff --git a/data/CMakeLists.txt b/data/CMakeLists.txt index e71051e..ec27376 100644 --- a/data/CMakeLists.txt +++ b/data/CMakeLists.txt @@ -17,7 +17,7 @@ install( ) ########################### -# Dbus Service +# Upstart Job ########################### set( @@ -37,6 +37,26 @@ install( ) ########################### +# XDG Autostart +########################### + +set( + INDICATOR_SOUND_XDG_AUTOSTART + "${CMAKE_CURRENT_BINARY_DIR}/indicator-sound.desktop" +) + +configure_file( + "indicator-sound.desktop.in" + ${INDICATOR_SOUND_CONF} + @ONLY +) + +install( + FILES "${INDICATOR_SOUND_XDG_AUTOSTART}" + DESTINATION "/etc/xdg/autostart" +) + +########################### # GSettings ########################### diff --git a/data/indicator-sound.desktop.in b/data/indicator-sound.desktop.in new file mode 100644 index 0000000..aeb6440 --- /dev/null +++ b/data/indicator-sound.desktop.in @@ -0,0 +1,9 @@ +[Desktop Entry] +Type=Application +Name=Indicator Sound +Exec=@CMAKE_INSTALL_FULL_LIBEXECDIR@/indicator-sound/indicator-sound-service +NotShowIn=Unity; +NoDisplay=true +StartupNotify=false +Terminal=false + |