You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
#!/bin/bash
|
|
|
|
revert() {
|
|
xset dpms 0 0 0
|
|
}
|
|
trap revert HUP INT TERM
|
|
|
|
xset dpms 25 25 25
|
|
|
|
scrot /tmp/screen.png
|
|
convert /tmp/screen.png -scale 5% -scale 2000% /tmp/screen.png
|
|
i3lock -n -f -p win -i /tmp/screen.png
|
|
|
|
revert
|
|
|