6 lines
98 B
Bash
6 lines
98 B
Bash
|
#!/bin/sh
|
||
|
|
||
|
touch /tmp/$USER-screen.lock
|
||
|
i3lock ${@:--nefc "#000000"}
|
||
|
rm -f /tmp/$USER-screen.lock
|