10 lines
154 B
Bash
10 lines
154 B
Bash
|
#!/bin/bash
|
||
|
|
||
|
PID=`cat /tmp/$USER-wallpaper.pid`
|
||
|
|
||
|
if [ $PID ]; then
|
||
|
kill -SIGUSR1 $PID
|
||
|
else
|
||
|
systemctl --user restart wallpapers.service
|
||
|
fi
|