all repos — dotfiles @ b4e69c97007a93c9ce28c4107ca91e3928a34037

my *nix dotfiles

remove grayscaling in lock
icyphox icyph0x@protonmail.com
Mon, 22 Jan 2018 00:48:56 +0530
commit

b4e69c97007a93c9ce28c4107ca91e3928a34037

parent

db03b022017a6eed1b465a1bd13f0b2e1588236d

1 files changed, 1 insertions(+), 1 deletions(-)

jump to
M scripts/lock.shscripts/lock.sh

@@ -4,7 +4,7 @@ image_file=/tmp/screen_lock.png

resolution=$(xdpyinfo | grep dimensions | awk '{print $2}') filters='gblur=sigma=15' ffmpeg -y -loglevel 0 -s "$resolution" -f x11grab -i $DISPLAY -vframes 1 \ - -vf "$filters,format=gray" "$image_file" + -vf "$filters" "$image_file" i3lock -i $image_file -l '#222222' -o '#99C794' -w '#EC5f67'