5 lines
84 B
Bash
5 lines
84 B
Bash
|
#!/bin/sh
|
||
|
|
||
|
R=`find "$1" | grep -P 'png$' | sort -R | head -n1`
|
||
|
exec i3lock -i $R -t
|