add grayscaling to lock script
icyphox icyph0x@protonmail.com
Sun, 21 Jan 2018 19:14:22 +0530
1 files changed,
3 insertions(+),
3 deletions(-)
jump to
M
scripts/scripts/lock.sh
→
scripts/scripts/lock.sh
@@ -2,9 +2,9 @@ #!/bin/bash
image_file=/tmp/screen_lock.png resolution=$(xdpyinfo | grep dimensions | awk '{print $2}') -filters='gblur=sigma=8' +filters='gblur=sigma=15' ffmpeg -y -loglevel 0 -s "$resolution" -f x11grab -i $DISPLAY -vframes 1 \ - -vf "$filters" "$image_file" -i3lock -i $image_file -l '#d8dee9' -o '#99C794' -w '#EC5f67' + -vf "$filters,format=gray" "$image_file" +i3lock -i $image_file -l '#222222' -o '#99C794' -w '#EC5f67'