dotfiles/nixos/.flake/home/scripts.nix.org
2024-09-28 00:01:09 -05:00

921 B

Custom Scripts

Open script container.

  { config, pkgs, ... }:

  {
    home.file = {

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

      ".local/bin/poweroptions.sh" = {
        text = ''
    #!/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
        '';
        executable = true;
      };

Close script container.

    };
  }