replace fuzzel with rofi
This commit is contained in:
parent
aa04c10197
commit
2e6ed21c2a
3 changed files with 8 additions and 8 deletions
|
@ -6,6 +6,6 @@
|
||||||
./swayosd.nix
|
./swayosd.nix
|
||||||
./waybar.nix
|
./waybar.nix
|
||||||
./wlogout.nix
|
./wlogout.nix
|
||||||
|
./rofi.nix
|
||||||
];
|
];
|
||||||
programs.fuzzel.enable = true;
|
}
|
||||||
}
|
|
||||||
|
|
|
@ -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''
|
||||||
|
|
||||||
|
|
|
@ -1,5 +1,6 @@
|
||||||
{ ...}: {
|
{ ...}: {
|
||||||
programs.rofi = {
|
programs.rofi = {
|
||||||
enable = true;
|
enable = true;
|
||||||
|
theme = "material";
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue