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