mirror of
https://github.com/yquake2/yquake2remaster.git
synced 2024-11-22 04:31:09 +00:00
Redo "Simplify usage of $GSC_PID.", which was accidently undone.
This commit is contained in:
parent
b6325d7858
commit
57bbdebb44
1 changed files with 2 additions and 2 deletions
|
@ -31,7 +31,7 @@ if ps auxww | grep -q 'unclutter'; then
|
|||
fi
|
||||
|
||||
# if gnome-screensaver was running..
|
||||
if [ $GSC_PID -gt 0 ]; then
|
||||
if [ -n "$GSC_PID" ]; then
|
||||
echo "reactivating gnome screensaver"
|
||||
kill $GSC_PID
|
||||
kill "$GSC_PID"
|
||||
fi
|
||||
|
|
Loading…
Reference in a new issue