fix: update rofi and hyprland

This commit is contained in:
etwas 2025-10-14 21:01:42 +02:00
parent 65a53fe6f4
commit e6a6e1fc6c
Signed by: etwas
SSH key fingerprint: SHA256:bHhIeAdn/2k9jmOs6+u6ox98VYmoHUN3HfnpV2w8Ws0
2 changed files with 5 additions and 7 deletions

View file

@ -92,11 +92,9 @@
force_zero_scaling = true;
};
gestures = {
# See https://wiki.hyprland.org/Configuring/Variables/ for more
workspace_swipe = true;
workspace_swipe_fingers = 3;
};
gesture = [
"3, horizontal, workspace"
];
windowrulev2 = [
"float,title:Welcome to ((IntelliJ IDEA)|PyCharm|RustRover|GoLand|DataGrip|(Android Studio))"
@ -111,7 +109,7 @@
let
alacritty = lib.getExe pkgs.alacritty;
hyprshot = lib.getExe pkgs.hyprshot;
rofi = lib.getExe pkgs.rofi-wayland;
rofi = lib.getExe' pkgs.rofi "rofi";
rofimoji = lib.getExe pkgs.rofimoji;
swaylock = lib.getExe pkgs.swaylock;
nautilus = lib.getExe pkgs.nautilus;

View file

@ -3,7 +3,7 @@
programs.rofi = {
enable = true;
package = pkgs.rofi-wayland;
package = pkgs.rofi.override { plugins = [ pkgs.rofi-emoji ]; };
theme = ./catppuccin-mocha.rasi;
};