diff options
author | Elizabeth Hunt <me@liz.coffee> | 2025-08-03 17:50:17 -0700 |
---|---|---|
committer | Elizabeth Hunt <me@liz.coffee> | 2025-08-03 17:50:17 -0700 |
commit | 968c9cb9c75ffc43845085ecb7e56747640adeae (patch) | |
tree | 9086f70e064ae27a1f5977ad842eed0c5d87a508 /dots/systemd | |
parent | e6c75773be5d9cf9d4c26cf2e7d0b243f6317d0d (diff) | |
download | dotfiles-968c9cb9c75ffc43845085ecb7e56747640adeae.tar.gz dotfiles-968c9cb9c75ffc43845085ecb7e56747640adeae.zip |
Fixes and Adds new user systemd services
Diffstat (limited to 'dots/systemd')
-rw-r--r-- | dots/systemd/.config/systemd/user/playerctld.service | 9 | ||||
-rw-r--r-- | dots/systemd/.config/systemd/user/wallpaper.service.j2 (renamed from dots/systemd/.config/systemd/services/wallpaper.service.j2) | 3 |
2 files changed, 12 insertions, 0 deletions
diff --git a/dots/systemd/.config/systemd/user/playerctld.service b/dots/systemd/.config/systemd/user/playerctld.service new file mode 100644 index 0000000..f54238c --- /dev/null +++ b/dots/systemd/.config/systemd/user/playerctld.service @@ -0,0 +1,9 @@ +[Unit] +Description=MPRIS + +[Service] +Type=oneshot +ExecStart=/usr/bin/playerctld daemon + +[Install] +WantedBy=default.target diff --git a/dots/systemd/.config/systemd/services/wallpaper.service.j2 b/dots/systemd/.config/systemd/user/wallpaper.service.j2 index df4f595..511a82e 100644 --- a/dots/systemd/.config/systemd/services/wallpaper.service.j2 +++ b/dots/systemd/.config/systemd/user/wallpaper.service.j2 @@ -7,3 +7,6 @@ RestartSec=1800s ExecStart=/bin/bash {{ user.home }}/scripts/wallpaper.sh Sysloglevel=5 LogLevelMax=5 + +[Install] +WantedBy=default.target |