Add file browser

This commit is contained in:
2026-02-11 10:19:15 +01:00
parent 29fc5d439a
commit 696c7e50cf
2 changed files with 6 additions and 0 deletions

View File

@@ -23,6 +23,7 @@
"$terminal" = "kitty"; "$terminal" = "kitty";
"$menu" = "rofi -show drun"; "$menu" = "rofi -show drun";
"$bluetoothMenu" = "bzmenu --launcher rofi"; "$bluetoothMenu" = "bzmenu --launcher rofi";
"$files" = "rofi -show filebrowser";
### BASIC LAYOUT ### BASIC LAYOUT
general = { general = {
@@ -77,6 +78,7 @@
"$mod, RETURN, exec, $terminal" "$mod, RETURN, exec, $terminal"
"$mod, D, exec, $menu" "$mod, D, exec, $menu"
"$mod, B, exec, $bluetoothMenu" "$mod, B, exec, $bluetoothMenu"
"$mod, G, exec, $files"
"$mod, Q, killactive" "$mod, Q, killactive"
"$mod, F, fullscreen" "$mod, F, fullscreen"
"$mod, M, exit" "$mod, M, exit"

View File

@@ -1,6 +1,10 @@
{ pkgs, ... }: { pkgs, ... }:
{ {
home.packages = [
pkgs.rofi-file-browser
];
programs.rofi = { programs.rofi = {
enable = true; enable = true;
theme = "material"; theme = "material";