dotfiles/nixos/.local/bin/poweroptions.org
Jacob Janzen a9ce5f2782 new stuff
2024-09-26 21:08:50 -05:00

556 B

Power Options Script

Use fuzzel to open a menu to power off, reboot, or log out.

  #!/bin/sh

  getoption () {
      fuzzel --dmenu -l 3 -x 1 -r 10 << EOF
          󰐥 power off
          󰜉 restart
          󰍃 logout
  EOF
  }

  option=$(getoption | xargs)
  case $option in
      '󰐥 power off')
          systemctl poweroff;;
      '󰜉 restart')
          systemctl reboot;;
      '󰍃 logout')
          hyprctl dispatch exit;;
  esac