From 432a8e5f67b17a3c1d95ee5803cb747f950b57ee Mon Sep 17 00:00:00 2001 From: Silvio Rhatto Date: Mon, 29 Jun 2020 09:06:47 -0300 Subject: Fix: xlock --- xlock | 17 +++++++++-------- 1 file changed, 9 insertions(+), 8 deletions(-) diff --git a/xlock b/xlock index 87a86dd..04adf42 100755 --- a/xlock +++ b/xlock @@ -5,18 +5,19 @@ # Get current focused window # Some screen lockers such as i3lock loose the window focus -WINDOW="`xdotool getwindowfocus`" +#WINDOW="`xdotool getwindowfocus`" + +# See https://www.kirsle.net/turn-off-monitor-from-linux-cli +# https://askubuntu.com/questions/62858/turn-off-monitor-using-command-line#62861 +xset dpms force off +sleep 1 # Using xscreensaver #xscreensaver-command --lock # Using i3lock -i3lock -c 1c1c1c - -# See https://www.kirsle.net/turn-off-monitor-from-linux-cli -# https://askubuntu.com/questions/62858/turn-off-monitor-using-command-line#62861 -sleep 1 -xset dpms force off +# Ensure it is not forked or we might loose window focus after unlocking +i3lock -c 1c1c1c -n # Restore focus -xdotool windowfocus $WINDOW +#xdotool windowfocus $WINDOW -- cgit v1.2.3