7 lines
94 B
Bash
Executable File
7 lines
94 B
Bash
Executable File
#!/bin/sh
|
|
|
|
zenity --question --text="Logout?"
|
|
if [ $? = 0 ]; then
|
|
pkill enlightenment
|
|
fi
|