├── .gitignore ├── README.md ├── conkeror@.service ├── dbus.service ├── dbus.socket ├── default.target ├── emacs-trunk@.service ├── emacs@.service ├── emacsclient@.service ├── emacsd.service ├── env.service ├── firefox@.service ├── gpg-agent.service ├── gui@.target ├── guilewm@.service ├── irexec.service ├── lxde@.service ├── midi.service ├── mosd@.service ├── numlock@.service ├── openbox@.service ├── setxkbmap@.service ├── stumpwm@.service ├── timidity.service ├── tvguide.service ├── tvguide.timer ├── unclutter@.service ├── x@.service ├── xbase@.target ├── xmodmap@.service ├── xrdb@.service ├── xset@.service ├── xsetroot@.service └── xterm@.service /.gitignore: -------------------------------------------------------------------------------- 1 | *.target.wants -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alezost/systemd-user-units/HEAD/README.md -------------------------------------------------------------------------------- /conkeror@.service: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alezost/systemd-user-units/HEAD/conkeror@.service -------------------------------------------------------------------------------- /dbus.service: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alezost/systemd-user-units/HEAD/dbus.service -------------------------------------------------------------------------------- /dbus.socket: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alezost/systemd-user-units/HEAD/dbus.socket -------------------------------------------------------------------------------- /default.target: -------------------------------------------------------------------------------- 1 | [Unit] 2 | Description=Default user target 3 | -------------------------------------------------------------------------------- /emacs-trunk@.service: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alezost/systemd-user-units/HEAD/emacs-trunk@.service -------------------------------------------------------------------------------- /emacs@.service: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alezost/systemd-user-units/HEAD/emacs@.service -------------------------------------------------------------------------------- /emacsclient@.service: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alezost/systemd-user-units/HEAD/emacsclient@.service -------------------------------------------------------------------------------- /emacsd.service: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alezost/systemd-user-units/HEAD/emacsd.service -------------------------------------------------------------------------------- /env.service: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alezost/systemd-user-units/HEAD/env.service -------------------------------------------------------------------------------- /firefox@.service: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alezost/systemd-user-units/HEAD/firefox@.service -------------------------------------------------------------------------------- /gpg-agent.service: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alezost/systemd-user-units/HEAD/gpg-agent.service -------------------------------------------------------------------------------- /gui@.target: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alezost/systemd-user-units/HEAD/gui@.target -------------------------------------------------------------------------------- /guilewm@.service: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alezost/systemd-user-units/HEAD/guilewm@.service -------------------------------------------------------------------------------- /irexec.service: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alezost/systemd-user-units/HEAD/irexec.service -------------------------------------------------------------------------------- /lxde@.service: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alezost/systemd-user-units/HEAD/lxde@.service -------------------------------------------------------------------------------- /midi.service: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alezost/systemd-user-units/HEAD/midi.service -------------------------------------------------------------------------------- /mosd@.service: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alezost/systemd-user-units/HEAD/mosd@.service -------------------------------------------------------------------------------- /numlock@.service: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alezost/systemd-user-units/HEAD/numlock@.service -------------------------------------------------------------------------------- /openbox@.service: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alezost/systemd-user-units/HEAD/openbox@.service -------------------------------------------------------------------------------- /setxkbmap@.service: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alezost/systemd-user-units/HEAD/setxkbmap@.service -------------------------------------------------------------------------------- /stumpwm@.service: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alezost/systemd-user-units/HEAD/stumpwm@.service -------------------------------------------------------------------------------- /timidity.service: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alezost/systemd-user-units/HEAD/timidity.service -------------------------------------------------------------------------------- /tvguide.service: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alezost/systemd-user-units/HEAD/tvguide.service -------------------------------------------------------------------------------- /tvguide.timer: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alezost/systemd-user-units/HEAD/tvguide.timer -------------------------------------------------------------------------------- /unclutter@.service: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alezost/systemd-user-units/HEAD/unclutter@.service -------------------------------------------------------------------------------- /x@.service: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alezost/systemd-user-units/HEAD/x@.service -------------------------------------------------------------------------------- /xbase@.target: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alezost/systemd-user-units/HEAD/xbase@.target -------------------------------------------------------------------------------- /xmodmap@.service: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alezost/systemd-user-units/HEAD/xmodmap@.service -------------------------------------------------------------------------------- /xrdb@.service: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alezost/systemd-user-units/HEAD/xrdb@.service -------------------------------------------------------------------------------- /xset@.service: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alezost/systemd-user-units/HEAD/xset@.service -------------------------------------------------------------------------------- /xsetroot@.service: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alezost/systemd-user-units/HEAD/xsetroot@.service -------------------------------------------------------------------------------- /xterm@.service: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alezost/systemd-user-units/HEAD/xterm@.service --------------------------------------------------------------------------------