This commit is contained in:
joygnu 2024-07-05 20:32:21 +02:00
parent 655115a88f
commit dacb40c610
3 changed files with 14 additions and 17 deletions

View file

@ -61,8 +61,6 @@
"$mod, Q, killactive" "$mod, Q, killactive"
"$mod, W, togglefloating" "$mod, W, togglefloating"
"$mod, R, togglesplit" "$mod, R, togglesplit"
"$mod, K, exec, amixer -q sset Master 5%+"
"$mod, J, exec, amixer -q sset Master 5%-"
"$mod+shift, S, exec, systemctl suspend" "$mod+shift, S, exec, systemctl suspend"
"$mod+shift, M, exit, hyprland" "$mod+shift, M, exit, hyprland"
@ -75,22 +73,22 @@
# Move focus # Move focus
"$mod, Return, fullscreen" "$mod, Return, fullscreen"
"$mod, left, movefocus, l" "$mod, H, movefocus, l"
"$mod, right, movefocus, r" "$mod, L, movefocus, r"
"$mod, up, movefocus, u" "$mod, K, movefocus, u"
"$mod, down, movefocus, d" "$mod, J, movefocus, d"
# Window resizing X Y # Window resizing X Y
"CTRL+SHIFT, left, resizeactive, -60 0" "CTRL+SHIFT, H, resizeactive, -60 0"
"CTRL+SHIFT, right, resizeactive, 60 0" "CTRL+SHIFT, L, resizeactive, 60 0"
"CTRL+SHIFT, up, resizeactive, 0 -60" "CTRL+SHIFT, K, resizeactive, 0 -60"
"CTRL+SHIFT, down, resizeactive, 0 60" "CTRL+SHIFT, J, resizeactive, 0 60"
# Moving windows # Moving windows
"$mod SHIFT, left, swapwindow, l" "$mod SHIFT, H, swapwindow, l"
"$mod SHIFT, right, swapwindow, r" "$mod SHIFT, L, swapwindow, r"
"$mod SHIFT, up, swapwindow, u" "$mod SHIFT, K, swapwindow, u"
"$mod SHIFT, down, swapwindow, d" "$mod SHIFT, J, swapwindow, d"
# Switch workspaces # Switch workspaces
"$mod, 1, workspace, 1" "$mod, 1, workspace, 1"

View file

@ -4,14 +4,13 @@
programs.rofi = { programs.rofi = {
enable = true; enable = true;
package = pkgs.rofi-wayland; package = pkgs.rofi-wayland;
#theme = "~/nix/home/rofi/gruvbox-material.rasi"; theme = lib.mkForce "~/nix/home/rofi/gruvbox-material.rasi";
extraConfig = { extraConfig = {
modi = "drun"; modi = "drun";
icon-theme = "Oranchelo"; icon-theme = "Oranchelo";
show-icons = true; show-icons = true;
terminal = "alacritty"; terminal = "alacritty";
drun-display-format = "{icon} {name}"; drun-display-format = "{icon} {name}";
# location = 5;
disable-history = false; disable-history = false;
hide-scrollbar = true; hide-scrollbar = true;
display-drun = " Apps "; display-drun = " Apps ";

View file

@ -27,6 +27,6 @@
cursor.name = "Bibata-Modern-Ice"; cursor.name = "Bibata-Modern-Ice";
cursor.package = pkgs.bibata-cursors; cursor.package = pkgs.bibata-cursors;
cursor.size = 24; cursor.size = 24;
fonts.sizes.desktop = 12;
}; };
} }