mirror of
https://github.com/rbreaves/kinto.git
synced 2025-06-27 16:41:45 +02:00
8 lines
185 B
Bash
Executable File
8 lines
185 B
Bash
Executable File
#!/bin/bash
|
|
dbus-monitor --session "type='signal',interface='org.gnome.SessionManager.Logout'" | grep '1' |
|
|
while read x; do
|
|
# echo "$x"
|
|
sudo systemctl stop xkeysnail
|
|
exit 0
|
|
done
|