8 lines
223 B
Bash
Executable File
8 lines
223 B
Bash
Executable File
#!/bin/bash
|
|
|
|
#scrot screenshot.png -m -e 'mv $f /tmp/'
|
|
#convert /tmp/screenshot.png -blur 0x7 /tmp/screenshotblur.png
|
|
#i3lock -t -i /tmp/screenshotblur.png
|
|
|
|
i3lock -t -i $(find $HOME/pictures/lockscreen -type f | shuf -n1)
|