diff options
author | David Runge <dave@sleepmap.de> | 2017-01-10 18:34:41 +0100 |
---|---|---|
committer | David Runge <dave@sleepmap.de> | 2017-01-10 18:34:41 +0100 |
commit | e6df431d259bc476c968301f34e6e39c5bfe1ad2 (patch) | |
tree | 5771b22ed85411ff66d19d7f2cc525dab9d047dc /user | |
parent | f29d2b7fb9596a924cbc835b84b99d05bd6a806c (diff) | |
parent | 34d31c932f00a3dd5c9aeadaef5c5eae297321f9 (diff) | |
download | uenv-e6df431d259bc476c968301f34e6e39c5bfe1ad2.tar.gz uenv-e6df431d259bc476c968301f34e6e39c5bfe1ad2.tar.bz2 uenv-e6df431d259bc476c968301f34e6e39c5bfe1ad2.tar.xz uenv-e6df431d259bc476c968301f34e6e39c5bfe1ad2.zip |
Merge branch 'master' of sleepmap.de:software/uenv0.8.3
* 'master' of sleepmap.de:software/uenv:
README.rst: Removing gpg-agent.service specific information.
user/gpg-agent.service: Removing gpg-agent.service, as it was added to the repository package gnupg.
user/jack@.service: Leaving space between flags and parameters.
user/conky@.service: Moving to .conf files for conky configuration.
user/jack@.service: Removing named server settings (they conflict with many default clients.
NEWS: Adding information for version 0.7.0.
README.rst: Removing update-mirrorlist system services (project seems dead and there is now update-pacman-mirrorlist: https://aur.archlinux.org/packages/update-pacman-mirrorlist/).
README.rst: Adding information regarding the conky@ user service.
user/conky@.service: Adding a conky@ user service, that can be used to start conky scripts by configuration file name.
user/compton.service: Adding a check if X is running using xset. Raising RestartSec to 3s. Making service anti-dependant on realtime kernel.
Diffstat (limited to 'user')
-rw-r--r-- | user/compton.service | 5 | ||||
-rw-r--r-- | user/conky@.service | 12 | ||||
-rw-r--r-- | user/gpg-agent.service | 12 | ||||
-rw-r--r-- | user/jack@.service | 2 |
4 files changed, 17 insertions, 14 deletions
diff --git a/user/compton.service b/user/compton.service index 8b313b5..a8ceb7e 100644 --- a/user/compton.service +++ b/user/compton.service @@ -2,12 +2,15 @@ Description=Compton X Compositor After=display-manager.service local-fs.target ConditionFileIsExecutable=/usr/bin/compton -ConditionFileNotEmpty=/sys/kernel/realtime +ConditionFileIsExecutable=/usr/bin/xset +ConditionFileNotEmpty=!/sys/kernel/realtime [Service] Type=forking +ExecStartPre=/usr/bin/sh -c '/usr/bin/xset q 2>&1 > /dev/null' ExecStart=/usr/bin/compton --config %h/.config/compton.conf -b Restart=always +RestartSec=3s [Install] WantedBy=default.target diff --git a/user/conky@.service b/user/conky@.service new file mode 100644 index 0000000..9e0323e --- /dev/null +++ b/user/conky@.service @@ -0,0 +1,12 @@ +[Unit] +Description=Conky system monitor +After=display-manager.service local-fs.target + +[Service] +Type=forking +ExecStart=/usr/bin/conky -c %h/.config/conky/%i.conf +Restart=always +RestartSec=3s + +[Install] +WantedBy=default.target diff --git a/user/gpg-agent.service b/user/gpg-agent.service deleted file mode 100644 index 3914f68..0000000 --- a/user/gpg-agent.service +++ /dev/null @@ -1,12 +0,0 @@ -[Unit] -Description=GnuPG private key agent -IgnoreOnIsolate=true - -[Service] -Type=forking -ExecStart=/usr/bin/gpg-agent --daemon --homedir=%h/.gnupg -ExecStop=/usr/bin/pkill gpg-agent -Restart=on-abort - -[Install] -WantedBy=default.target diff --git a/user/jack@.service b/user/jack@.service index 7edafc6..751e5bd 100644 --- a/user/jack@.service +++ b/user/jack@.service @@ -5,7 +5,7 @@ After=sound.target local-fs.target [Service] EnvironmentFile=-/etc/jack/%i EnvironmentFile=-%h/.config/jack/%i -ExecStart=/usr/bin/jackd -n $NAME $REALTIME -p $PORTMAX -d $DRIVER -d $DEVICE $DRIVER_SETTINGS +ExecStart=/usr/bin/jackd $REALTIME -p $PORTMAX -d $DRIVER -d $DEVICE $DRIVER_SETTINGS CPUSchedulingPolicy=rr CPUSchedulingPriority=70 LimitRTPRIO=71 |