From cf12b46b6e2b714aae378047d5876fc3d635118b Mon Sep 17 00:00:00 2001 From: ediblerope Date: Thu, 14 May 2026 10:05:44 +0100 Subject: [PATCH] --- settings/hyprland.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/settings/hyprland.nix b/settings/hyprland.nix index 05a9adf..75ce595 100644 --- a/settings/hyprland.nix +++ b/settings/hyprland.nix @@ -285,7 +285,7 @@ in programs.rofi = { enable = true; - package = pkgs.rofi-wayland; + package = pkgs.rofi; terminal = "${pkgs.ghostty}/bin/ghostty"; extraConfig = { show-icons = true; @@ -361,7 +361,7 @@ in tooltip = false; on-click = "${pkgs.writeShellScript "power-menu" '' choice=$(printf "Lock\nLogout\nReboot\nShutdown" \ - | ${pkgs.rofi-wayland}/bin/rofi -dmenu -p "Power") + | ${pkgs.rofi}/bin/rofi -dmenu -p "Power") case "$choice" in Lock) ${pkgs.hyprlock}/bin/hyprlock ;; Logout) hyprctl dispatch exit ;;