From f7311c6eaad196c04e3f98c40f06ff947af1475a Mon Sep 17 00:00:00 2001 From: Mohammad Rafiq Date: Tue, 18 Mar 2025 22:38:56 +0800 Subject: [PATCH] chore: rm hyprbars --- users/modules/programs/hyprland.nix | 21 ++------------------- 1 file changed, 2 insertions(+), 19 deletions(-) diff --git a/users/modules/programs/hyprland.nix b/users/modules/programs/hyprland.nix index c4f2366..b92253a 100644 --- a/users/modules/programs/hyprland.nix +++ b/users/modules/programs/hyprland.nix @@ -2,7 +2,8 @@ inputs, pkgs, ... -}: { +}: +{ home.sessionVariables.NIXOS_OZONE_WL = "1"; wayland.windowManager.hyprland = { enable = true; @@ -100,24 +101,6 @@ numlock_by_default = true; follow_mouse = 2; # Click on a window to change focus }; - plugin = { - hyprbars = { - # example config - bar_height = 20; - - # example buttons (R -> L) - # hyprbars-button = color, size, on-click - hyprbars-button = [ - "rgb(ff4040), 10, 󰖭, hyprctl dispatch killactive" - "rgb(eeee11), 10, , hyprctl dispatch fullscreen 1" - ]; - }; - }; - # Hyprbars }; - plugins = [ - inputs.hyprland-plugins.packages.${pkgs.system}.hyprbars - # ... - ]; }; }