Fix systemd user unit names in scripts

This commit is contained in:
2020-12-11 20:05:55 +01:00
parent 6ede93b0e9
commit 2dc1b6387e
3 changed files with 18 additions and 5 deletions

View File

@@ -10,14 +10,14 @@ is_on() {
switch_on() {
touch "${_status_file}"
dunstctl disable &
systemctl --user --no-block stop redshift_user
systemctl --user --no-block stop spotify
systemctl --user --no-block stop user:redshift
systemctl --user --no-block stop user:spotify
}
switch_off() {
rm -f "${_status_file}"
dunstctl enable &
"$_autostart" redshift_user spotify
"$_autostart" redshift spotify
}