openbox-logout 369 B

123456789101112131415161718192021222324252627
  1. #!/bin/bash
  2. yad \
  3. --on-top \
  4. --center \
  5. --text-align center \
  6. --title="Sessão OpenBox" \
  7. --button="Sair!:11" \
  8. --button="Desligar!:12" \
  9. --button="Reiniciar!:13" \
  10. case "$?" in
  11. 11)
  12. echo 'Encerrar'
  13. pkill -9 -U $USER
  14. ;;
  15. 12)
  16. echo 'Desligar'
  17. systemctl poweroff
  18. ;;
  19. 13)
  20. echo 'Reiniciar'
  21. systemctl reboot
  22. ;;
  23. esac