replace fuzzel with rofi

This commit is contained in:
albert 2024-02-18 11:12:37 +09:00
parent aa04c10197
commit 2e6ed21c2a
No known key found for this signature in database
GPG key ID: 64F6C4EB46C4543A
3 changed files with 8 additions and 8 deletions

View file

@ -6,6 +6,6 @@
./swayosd.nix ./swayosd.nix
./waybar.nix ./waybar.nix
./wlogout.nix ./wlogout.nix
./rofi.nix
]; ];
programs.fuzzel.enable = true; }
}

View file

@ -1,4 +1,4 @@
{ inputs, pkgs, ... }: { { ... }: {
wayland.windowManager.hyprland = { wayland.windowManager.hyprland = {
enable = true; enable = true;
plugins = []; plugins = [];
@ -22,7 +22,6 @@
layerrule = [ layerrule = [
"blur, waybar" "blur, waybar"
"blur, mako" "blur, mako"
"blur, fuzzel"
"blur, rofi" "blur, rofi"
]; ];
xwayland.force_zero_scaling = true; xwayland.force_zero_scaling = true;
@ -147,8 +146,8 @@
############################################################################# #############################################################################
# Custom keybinds # Custom keybinds
# Show Rofi on SUPER-SPACE # Show Rofi on SUPER-SPACE
''SUPER, space, exec, fuzzel'' # ''SUPER, space, exec, fuzzel''
# ''SUPER, space, exec, rofi -show drun -show-icons ''SUPER, space, exec, rofi -show drun -show-icons''
# Take a screenshot with the Print key'' # Take a screenshot with the Print key''
'', Print, exec, grim -g "$(slurp)" | wl-copy -t image/png'' '', Print, exec, grim -g "$(slurp)" | wl-copy -t image/png''

View file

@ -1,5 +1,6 @@
{ ...}: { { ...}: {
programs.rofi = { programs.rofi = {
enable = true; enable = true;
theme = "material";
}; };
} }