6 lines
146 B
Plaintext
6 lines
146 B
Plaintext
|
#!/bin/bash
|
||
|
|
||
|
x=$(echo -e "OUI\nNON" | dmenu -i -p "éteindre PC ?")
|
||
|
|
||
|
[ $x == "OUI" ] && echo "ration" && shutdown 0 || echo "pc go mimir annuler"
|