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.

2 yıl önce
3 yıl önce
2 yıl önce
3 yıl önce
12345678910
  1. #!/bin/sh
  2. chosen=$(echo "Shutdown\nReboot\nSuspend\nHibernate" | dmenu -i -p "Power Management")
  3. case "$chosen" in
  4. Shutdown) killall picom; systemctl poweroff;;
  5. Reboot) killall picom; systemctl reboot;;
  6. Suspend) slock & systemctl suspend;;
  7. Hibernate) systemctl hibernate;;
  8. esac