Deleted the outdated TODO, moved all init scripts into a folder

This commit is contained in:
rembo10
2014-04-04 14:09:28 -07:00
parent b02889a451
commit e136a6a4e4
8 changed files with 0 additions and 8 deletions
+18
View File
@@ -0,0 +1,18 @@
# headphones - Automatic music downloader
#
# This is a session/user job. Install this file into /usr/share/upstart/sessions
# if headphones is installed system wide, and into $XDG_CONFIG_HOME/upstart if
# headphones is installed per user. Change the executable path appropiately.
start on desktop-start
stop on desktop-end
env CONFIG=""$XDG_CONFIG_HOME"/headphones"
env DATA=""$XDG_DATA_HOME"/headphones"
pre-start script
[ -d "$CONFIG" ] || mkdir -p "$CONFIG"
[ -d "$DATA" ] || mkdir -p "$DATA"
end script
exec Headphones.py --nolaunch --config "$CONFIG"/config.ini --datadir "$DATA"