My dotfiles
25'ten fazla konu seçemezsiniz Konular bir harf veya rakamla başlamalı, kısa çizgiler ('-') içerebilir ve en fazla 35 karakter uzunluğunda olabilir.

poweroff.sh 235 B

3 yıl önce
12345678
  1. chosen=$(echo -e "Shutdown\nReboot\nSuspend\nHibernate" | dmenu -i -p "Power Management")
  2. case "$chosen" in
  3. Shutdown) sudo poweroff;;
  4. Reboot) sudo reboot;;
  5. Suspend) sudo suspend;;
  6. Hibernate) systemctl hibernate;;
  7. esac