diff --git a/modules/home/hyprland/default.nix b/modules/home/hyprland/default.nix index 63dedf1..04cf188 100644 --- a/modules/home/hyprland/default.nix +++ b/modules/home/hyprland/default.nix @@ -42,8 +42,6 @@ in wlogout.enable = true; }; - # services.dunst.enable = true; - home.packages = with pkgs; [ # wofi xfce.thunar diff --git a/modules/home/hyprland/wlogout/default.nix b/modules/home/hyprland/wlogout/default.nix index 5bc3391..a701a8c 100644 --- a/modules/home/hyprland/wlogout/default.nix +++ b/modules/home/hyprland/wlogout/default.nix @@ -23,55 +23,28 @@ in config = lib.mkIf cfg.enable { home.packages = with pkgs; [ wlogout ]; - xdg.configFile."wlogout/style.css".text = '' - * { - all: unset; - font-family: JetBrains Mono Nerd Font; - } + # xdg.configFile."wlogout/style.css".text = '' + # * { + # all: unset; + # font-family: JetBrains Mono Nerd Font; + # } - window { - background-color: #${palette.base00}; - } + # window { + # background-color: #${palette.base00}; + # } - button { - color: #${palette.base01}; - font-size: 64px; - background-color: rgba(0,0,0,0); - outline-style: none; - margin: 5px; - } + # button { + # color: #${palette.base01}; + # font-size: 64px; + # background-color: rgba(0,0,0,0); + # outline-style: none; + # margin: 5px; + # } - button:focus, button:active, button:hover { - color: #${palette.base0D}; - transition: ease 0.4s; - } - ''; - - xdg.configFile."wlogout/layout".text = '' - { - "label" : "lock", - "action" : "gtklock", - "text" : "󰌾", - "keybind" : "" - } - { - "label" : "logout", - "action" : "loginctl terminate-user $USER", - "text" : "󰗽", - "keybind" : "" - } - { - "label" : "shutdown", - "action" : "systemctl poweroff", - "text" : "󰐥", - "keybind" : "" - } - { - "label" : "reboot", - "action" : "systemctl reboot", - "text" : "󰑓", - "keybind" : "" - } - ''; + # button:focus, button:active, button:hover { + # color: #${palette.base0D}; + # transition: ease 0.4s; + # } + # ''; }; }