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
./waybar.nix
./wlogout.nix
./rofi.nix
];
programs.fuzzel.enable = true;
}

View file

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

View file

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