More hyprland optimizations

This commit is contained in:
Julian Mutter 2024-06-15 20:06:48 +02:00
parent 5233a7960b
commit 971125f434

View File

@ -43,7 +43,6 @@ in
}; };
home.packages = with pkgs; [ home.packages = with pkgs; [
# wofi
xfce.thunar xfce.thunar
# hyprpicker # TODO # hyprpicker # TODO
# hyprcursor # TODO # hyprcursor # TODO
@ -109,12 +108,6 @@ in
"firefox" "firefox"
]; ];
# Environment Variables
###
env = "XDG_CURRENT_DESKTOP,Hyprland";
# env = "XCURSOR_SIZE,24";
# env = "HYPRCURSOR_SIZE,24";
# Look and Feel # Look and Feel
general = { general = {
gaps_in = 5; gaps_in = 5;
@ -122,11 +115,13 @@ in
layout = "dwindle"; layout = "dwindle";
col.active_border = "0xff${palette.base0C} 0xff${palette.base0D} 270deg"; "col.active_border" = "0xff${palette.base0C} 0xff${palette.base0D} 270deg";
col.inactive_border = "0xff${palette.base00}"; "col.inactive_border" = "0xff${palette.base00}";
}; };
decoration = { decoration = {
# power saving
blur.enabled = false;
# power saving # power saving
drop_shadow = false; drop_shadow = false;
}; };
@ -158,7 +153,7 @@ in
# Input # Input
input = { input = {
kb_layout = "de"; kb_layout = "de";
natural_scroll = "yes"; natural_scroll = false;
}; };
# Window rules # Window rules
@ -199,7 +194,6 @@ in
"$mod, X, killactive," "$mod, X, killactive,"
"$mod, O, togglesplit," # dwindle "$mod, O, togglesplit," # dwindle
"$mod, P, pseudo," # dwindle
# opening applications # opening applications
"$mod, D, exec, wofi --show drun,run" "$mod, D, exec, wofi --show drun,run"
@ -209,6 +203,7 @@ in
"$mod, C, exec, qalculate-gtk" "$mod, C, exec, qalculate-gtk"
# other commands # other commands
"$mod SHIFT, E, exec, wlogout -p layer-shell"
"$mod, Escape, exec, wlogout -p layer-shell" "$mod, Escape, exec, wlogout -p layer-shell"
"$mod, TAB, exec, hyprlock" "$mod, TAB, exec, hyprlock"
"$mod SHIFT, R, exec, hyprctl reload" "$mod SHIFT, R, exec, hyprctl reload"