X-Git-Url: http://git.grml.org/?a=blobdiff_plain;f=usr_bin%2Fgrml-lock;h=ac05958cae070e1b93dc344c93858be9a78b8f1c;hb=9248c3dc0c134d39f6ab70a71c000265d600f737;hp=e3c775c9b47abddb28f607240b092b15ba50fd0d;hpb=4b833b84e4d7bbdf01d959ab26ab0fdeb42c6c77;p=grml-scripts.git diff --git a/usr_bin/grml-lock b/usr_bin/grml-lock index e3c775c..ac05958 100755 --- a/usr_bin/grml-lock +++ b/usr_bin/grml-lock @@ -14,7 +14,7 @@ if [ "$1" = "-h" ] || [ "$1" = "--help" ] ; then echo "${PN}: wrapper script to lock desktop This script is a wrapper to lock your desktop session -through the vlock application. +through the physlock application. Usage: just execute $PN without any further options." exit 0 @@ -22,7 +22,7 @@ fi if [ -r /etc/grml/script-functions ] ; then . /etc/grml/script-functions - check4progs vlock sudo chpasswd dialog || { echo "Sorry, necessary tools missing - can not continue. Exiting.">&2 ; exit 1 ; } + check4progs physlock sudo chpasswd dialog || { echo "Sorry, necessary tools missing - can not continue. Exiting.">&2 ; exit 1 ; } fi PWD_TEXT1="Set password (hidden typing):" @@ -44,7 +44,12 @@ and therefore might not work as intended." 7 70 fi lock_desktop() { - vlock -a -n -s + # be backwards compatible, see https://github.com/grml/grml/issues/87 + if physlock --help 2>&1 | grep -q -- '-u user' ; then + sudo physlock -u "$USER" + else + sudo physlock + fi } is_passwd_set() { @@ -71,7 +76,7 @@ set_passwd() { if [ "$PASSWD1" = "$PASSWD2" ] ; then echo "$USER:$PASSWD2" | sudo chpasswd else - $DIALOG --title "$PN" --msgbox "Error: passwords to not match. Exiting." 0 0 + $DIALOG --title "$PN" --msgbox "Error: passwords do not match. Exiting." 0 0 exit 1 fi }