From a5f52f7362c57a9930ad158c34612f1ac3b4f158 Mon Sep 17 00:00:00 2001 From: Armel van Ravels Date: Sun, 18 Jan 2026 15:54:00 +0100 Subject: [PATCH] Add bzmenu as launcher of bluetooth manager --- wm/hyprland.nix | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/wm/hyprland.nix b/wm/hyprland.nix index 4f4d360..f28988d 100644 --- a/wm/hyprland.nix +++ b/wm/hyprland.nix @@ -2,7 +2,8 @@ { home.packages = with pkgs; [ - wofi + rofi + bzmenu ]; programs.waybar.enable = true; @@ -19,7 +20,8 @@ ### VARIABLES "$mod" = "SUPER"; "$terminal" = "kitty"; - "$menu" = "wofi --show drun"; + "$menu" = "rofi -show drun"; + "$bluetoothMenu" = "bzmenu --launcher rofi"; ### BASIC LAYOUT general = { @@ -73,6 +75,7 @@ # Apps "$mod, RETURN, exec, $terminal" "$mod, D, exec, $menu" + "$mod, B, exec, $bluetoothMenu" "$mod, Q, killactive" "$mod, F, fullscreen" "$mod, M, exit"