From 0d7a1b06e8e5dfe06a93782ce908409f63da12fa Mon Sep 17 00:00:00 2001 From: Armel van Ravels Date: Wed, 11 Feb 2026 10:19:15 +0100 Subject: [PATCH] Add file browser --- wm/hyprland.nix | 2 ++ wm/rofi.nix | 4 ++++ 2 files changed, 6 insertions(+) diff --git a/wm/hyprland.nix b/wm/hyprland.nix index 3d25be7..b088967 100644 --- a/wm/hyprland.nix +++ b/wm/hyprland.nix @@ -23,6 +23,7 @@ "$terminal" = "kitty"; "$menu" = "rofi -show drun"; "$bluetoothMenu" = "bzmenu --launcher rofi"; + "$files" = "rofi -show filebrowser"; ### BASIC LAYOUT general = { @@ -77,6 +78,7 @@ "$mod, RETURN, exec, $terminal" "$mod, D, exec, $menu" "$mod, B, exec, $bluetoothMenu" + "$mod, G, exec, $files" "$mod, Q, killactive" "$mod, F, fullscreen" "$mod, M, exit" diff --git a/wm/rofi.nix b/wm/rofi.nix index 95c145f..fcb7c38 100644 --- a/wm/rofi.nix +++ b/wm/rofi.nix @@ -1,6 +1,10 @@ { pkgs, ... }: { + home.packages = [ + pkgs.rofi-file-browser + ]; + programs.rofi = { enable = true; theme = "material";