Fix swww-daemon forking in multiuser setups

This commit is contained in:
Salt 2024-11-06 21:49:47 -06:00
parent 87eef60701
commit 79034b7ffc
2 changed files with 2 additions and 2 deletions

View File

@ -1,2 +1,2 @@
# vim: set ft=config:
exec-once = pgrep swww-daemon || { rm /run/user/$UID/swww.socket; swww-daemon --format xrgb; }
exec-once = pgrep -U $USER swww-daemon || { rm /run/user/$UID/swww.socket; swww-daemon --format xrgb; }

View File

@ -1,2 +1,2 @@
# vim: set ft=config:
exec-once = pgrep swww-daemon || { rm /run/user/$UID/swww.socket; swww-daemon --format xrgb; }
exec-once = pgrep -U $USER swww-daemon || { rm /run/user/$UID/swww.socket; swww-daemon --format xrgb; }