mirror of
https://github.com/vincentbernat/i3wm-configuration.git
synced 2025-07-04 15:24:21 +02:00
9 lines
145 B
Text
9 lines
145 B
Text
|
#!/bin/sh
|
||
|
|
||
|
icon="$1"
|
||
|
|
||
|
exec notify-send "Lock screen" \
|
||
|
${icon:+-i $icon} \
|
||
|
-t 10000 \
|
||
|
"Lock screen will be started in 10 seconds..."
|