mirror of
https://github.com/vincentbernat/i3wm-configuration.git
synced 2025-07-04 15:24:21 +02:00
11 lines
222 B
Text
11 lines
222 B
Text
|
#!/bin/sh
|
||
|
|
||
|
icon="$1"
|
||
|
notify=$(dirname $(readlink -f "$0"))/notify-lock
|
||
|
|
||
|
exec xautolock \
|
||
|
-time 4 \
|
||
|
-locker "i3lock -n -i $HOME/.cache/awesome/current-wallpaper.png" \
|
||
|
-notify 10 \
|
||
|
-notifier "$notify $icon"
|