diff options
author | Ted Gould <ted@gould.cx> | 2013-10-29 09:29:22 -0700 |
---|---|---|
committer | Ted Gould <ted@gould.cx> | 2013-10-29 09:29:22 -0700 |
commit | 4913289a34ce6088ec06d7f32a55f0638e4c2da5 (patch) | |
tree | 2bd1cc2d0b1d2b226422ca3c8c2e5b474334abe9 /data | |
parent | fb134415e1e0042a00db4008e91adccd7d8eeff2 (diff) | |
download | ayatana-indicator-power-4913289a34ce6088ec06d7f32a55f0638e4c2da5.tar.gz ayatana-indicator-power-4913289a34ce6088ec06d7f32a55f0638e4c2da5.tar.bz2 ayatana-indicator-power-4913289a34ce6088ec06d7f32a55f0638e4c2da5.zip |
Add in the autostart config
Diffstat (limited to 'data')
-rw-r--r-- | data/Makefile.am | 13 | ||||
-rw-r--r-- | data/indicator-power.desktop.in | 9 |
2 files changed, 22 insertions, 0 deletions
diff --git a/data/Makefile.am b/data/Makefile.am index 9aed4e3..9a4caca 100644 --- a/data/Makefile.am +++ b/data/Makefile.am @@ -23,6 +23,19 @@ CLEANFILES += $(upstart_jobs_DATA) EXTRA_DIST += $(upstart_jobs_in) # +# the xdg autostart job file +# + +xdg_autostartdir = /etc/xdg/autostart +xdg_autostart_DATA = indicator-power.desktop +xdg_autostart_in = $(xdg_autostart_DATA:.desktop=.desktop.in) +$(xdg_autostart_DATA): $(xdg_autostart_in) + $(AM_V_GEN) $(SED) -e "s|\@pkglibexecdir\@|$(pkglibexecdir)|" $< > $@ +BUILT_SOURCES += $(xdg_autostart_DATA) +CLEANFILES += $(xdg_autostart_DATA) +EXTRA_DIST += $(xdg_autostart_in) + +# # the gettings # diff --git a/data/indicator-power.desktop.in b/data/indicator-power.desktop.in new file mode 100644 index 0000000..28025a2 --- /dev/null +++ b/data/indicator-power.desktop.in @@ -0,0 +1,9 @@ +[Desktop Entry] +Type=Application +Name=Indicator Power +Exec=@pkglibexecdir@/indicator-power-service +NotShowIn=Unity; +NoDisplay=true +StartupNotify=false +Terminal=false + |