Now with blur
This commit is contained in:
parent
38bca77723
commit
cbd56b6bac
1 changed files with 4 additions and 4 deletions
|
@ -1,18 +1,18 @@
|
||||||
#!/bin/bash
|
#!/bin/bash
|
||||||
|
|
||||||
#TMP=/tmp/lockscreen.png
|
TMP=/tmp/lockscreen.png
|
||||||
|
|
||||||
#scrot -q 30 -z $TMP
|
#scrot -q 30 -z $TMP
|
||||||
#convert $TMP -scale 10% -scale 1000% $TMP
|
#convert $TMP -scale 10% -scale 1000% $TMP
|
||||||
|
|
||||||
#blurscreen $TMP
|
#blurscreen $TMP
|
||||||
#convert -brightness-contrast -50x-40 $TMP $TMP
|
#convert -brightness-contrast -50x-40 $TMP $TMP
|
||||||
#scrot $TMP -e 'convert -resize 20% -fill "#282828" -colorize 50% -blur 0x1 -resize 500% $f '"$TMP"
|
scrot $TMP -e 'convert -resize 20% -fill "#282828" -colorize 50% -blur 0x1 -resize 500% $f '"$TMP"
|
||||||
#convert -gravity Center -composite $TMP ~/.config/lock.png $TMP
|
convert -gravity Center -composite $TMP ~/.config/lock.png $TMP
|
||||||
|
|
||||||
if [ -n "$(pgrep i3lock)" ]; then
|
if [ -n "$(pgrep i3lock)" ]; then
|
||||||
echo "i3lock already running. Aborting" >&2
|
echo "i3lock already running. Aborting" >&2
|
||||||
exit 1
|
exit 1
|
||||||
fi
|
fi
|
||||||
|
|
||||||
exec i3lock -u -i ~/.config/lockimage.png -c 000000
|
exec i3lock -u -i $TMP -c 000000
|
||||||
|
|
Loading…
Reference in a new issue