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.
16 lines
223 B
16 lines
223 B
|
9 years ago
|
#!/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 10% -scale 1000% /tmp/screen.png
|
||
|
|
i3lock -n -f -p win -i /tmp/screen.png
|
||
|
|
|
||
|
|
revert
|
||
|
|
|