From 69f4428fc03ffa03d47f6525fcb65fa48b5f76aa Mon Sep 17 00:00:00 2001 From: Galen Guyer Date: Tue, 16 Aug 2022 12:56:28 -0400 Subject: add screen lock script --- ext/lock.sh | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100755 ext/lock.sh diff --git a/ext/lock.sh b/ext/lock.sh new file mode 100755 index 0000000..440c87f --- /dev/null +++ b/ext/lock.sh @@ -0,0 +1,20 @@ +#!/bin/bash +set -eu + +scrot -o /tmp/screenshot.png +convert /tmp/screenshot.png -blur 0x16 -brightness-contrast -5 /tmp/screenshot.png + +# Turn on DND +#old_dnd="$(xfconf-query -c xfce4-notifyd -p /do-not-disturb)" +#xfconf-query -c xfce4-notifyd -p /do-not-disturb -s true + +# Pause stuff and mute audio +#playerctl -a pause > /dev/null +#old_mute="$(amixer get Master | tail -2 | grep '\[on\]')" +#amixer set Master mute > /dev/null + +i3lock -ni /tmp/screenshot.png + +# Set settings back to what they were before +#test -z "$old_mute" || amixer set Master unmute > /dev/null +#test "$old_dnd" = false && xfconf-query -c xfce4-notifyd -p /do-not-disturb -s false -- cgit v1.2.3