Script to rotate wallpaper
This commit is contained in:
parent
84ba87dcf8
commit
4a69e4e8d6
|
@ -0,0 +1,9 @@
|
|||
#!/bin/bash
|
||||
|
||||
PID=`cat /tmp/$USER-wallpaper.pid`
|
||||
|
||||
if [ $PID ]; then
|
||||
kill -SIGUSR1 $PID
|
||||
else
|
||||
systemctl --user restart wallpapers.service
|
||||
fi
|
Loading…
Reference in New Issue