feat: hyprland improvements, terraform email

This commit is contained in:
Kat Inskip 2025-12-18 15:30:52 -08:00
parent 4759970fe8
commit c7c485f955
20 changed files with 205 additions and 100 deletions

View file

@ -125,8 +125,9 @@
in [
"$mod, ${ws}, workspace, ${toString (x + 1)}"
"$mod SHIFT, ${ws}, hy3:movetoworkspace, ${toString (x + 1)}"
"$mod, F${ws}, workspace, ${toString (x + 11)}"
"$mod SHIFT, F${ws}, hy3:movetoworkspace, ${toString (x + 11)}"
# using F keys was confusing, as was using mod+alt, so now we use Alt instead of Super
"ALT, ${ws}, workspace, ${toString (x + 11)}"
"ALT SHIFT, F${ws}, hy3:movetoworkspace, ${toString (x + 11)}"
]
)
10)

View file

@ -44,8 +44,11 @@ in {
"CLUTTER_BACKEND,wayland"
];
render = {
direct_scanout = true;
new_render_scheduling = true;
#direct_scanout = true;
#new_render_scheduling = true;
};
misc = {
vfr = true;
};
#debug.disable_logs = false;
exec-once = [

View file

@ -2,14 +2,14 @@
inherit (std) list;
in {
wayland.windowManager.hyprland.settings.workspace = let
commonOptions = "gapsin:0,gapsout:0,rounding:false";
commonOptions = "gapsin:5,gapsout:5,rounding:true,persistent:true";
in
["1,monitor:DP-1,default:true,${commonOptions}"]
["1,default:true,${commonOptions}"]
++ (list.map (
workspace: "${toString workspace},monitor:DP-1${commonOptions}"
workspace: "${toString workspace},${commonOptions}"
) (list.range 2 10))
++ ["11,monitor:HDMI-A-1,default:true"]
++ ["11,${commonOptions}"]
++ (list.map (
workspace: "${toString workspace},monitor:HDMI-A-1${commonOptions}"
workspace: "${toString workspace},${commonOptions}"
) (list.range 12 20));
}