diff options
Diffstat (limited to 'slockd')
-rwxr-xr-x | slockd | 11 |
1 files changed, 3 insertions, 8 deletions
@@ -1,12 +1,7 @@ #!/bin/sh -if [ -z "$WAYLAND_DISPLAY" ]; then - LOCKER=slock -else - LOCKER=waylock -fi +[ "$(pgrep -U$(whoami) -x slockd | wc -l)" -gt "2" ] && echo "true" - -while [ 1 -gt 0 ]; do - $LOCKER && exit +while true; do + slock && exit done |