diff --git a/init.upstart b/init.upstart new file mode 100644 index 00000000..79918a89 --- /dev/null +++ b/init.upstart @@ -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"