all repos — dotfiles @ 451b9b31e5cfde9d312169840993aa1c00e88688

my *nix dotfiles

scripts/lock.sh (view raw)

 1#!/bin/bash
 2
 3image_file=/tmp/screen_lock.png
 4resolution=$(xdpyinfo | grep dimensions | awk '{print $2}')
 5filters='gblur=sigma=15'
 6ffmpeg -y -loglevel 0 -s "$resolution" -f x11grab -i $DISPLAY -vframes 1 \
 7  -vf "$filters,format=gray" "$image_file" 
 8i3lock -i $image_file -l '#222222' -o '#99C794' -w '#EC5f67'
 9
10