diff --git a/modules/home/rofi/config-wide.nix b/modules/home/rofi/config-wide.nix deleted file mode 100644 index ef83251..0000000 --- a/modules/home/rofi/config-wide.nix +++ /dev/null @@ -1,10 +0,0 @@ -{...}: { - home.file.".config/rofi/config-wide.rasi".text = '' - @import "~/.config/rofi/config-long.rasi" - window { - width: 100%; - location: south; - anchor: south; - } - ''; -} diff --git a/modules/home/rofi/default.nix b/modules/home/rofi/default.nix index 18e457f..6493e45 100644 --- a/modules/home/rofi/default.nix +++ b/modules/home/rofi/default.nix @@ -1,7 +1,6 @@ {...}: { imports = [ ./config-long.nix - ./config-wide.nix ./rofi.nix ]; } diff --git a/modules/home/scripts/keybinds.nix b/modules/home/scripts/keybinds.nix index 17042b4..1dac304 100644 --- a/modules/home/scripts/keybinds.nix +++ b/modules/home/scripts/keybinds.nix @@ -5,11 +5,10 @@ pkgs.writeShellScriptBin "list-keybinds" '' pkill rofi fi - rofi_theme="$HOME/.config/rofi/config-wide.rasi" msg='☣️ NOTE ☣️: Clicking with Mouse or Pressing ENTER will have NO function' keybinds=$(cat ~/.config/hypr/hyprland.conf | grep modifier) # use rofi to display the keybinds with the modified content - echo "$keybinds" | rofi -dmenu -i -config "$rofi_theme" -mesg "$msg" + echo "$keybinds" | rofi -dmenu -i -mesg "$msg" ''