Skip to content

Commit

Permalink
hyprland: Make windows easier to see without hyprdim
Browse files Browse the repository at this point in the history
Should be able to revert later.
  • Loading branch information
donovanglover committed Mar 25, 2024
1 parent e208178 commit 476e11f
Showing 1 changed file with 8 additions and 7 deletions.
15 changes: 8 additions & 7 deletions home/hyprland.nix
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ in
#!/usr/bin/env bash
hyprctl keyword general:gaps_out $((10 - $(hyprctl getoption general:gaps_out -j | jq -r ".custom" | choose 1)))
hyprctl keyword general:gaps_in $((5 - $(hyprctl getoption general:gaps_in -j | jq -r ".custom" | choose 1)))
hyprctl keyword general:border_size $((2 - $(hyprctl getoption general:border_size -j | jq -r ".int")))
hyprctl keyword general:border_size $((4 - $(hyprctl getoption general:border_size -j | jq -r ".int")))
hyprctl keyword decoration:rounding $((8 - $(hyprctl getoption decoration:rounding -j | jq -r ".int")))
'';
};
Expand Down Expand Up @@ -212,16 +212,16 @@ in
}
general {
gaps_in = 0
gaps_out = 0
border_size = 0
col.active_border = rgba(${base03}ee) rgba(${base04}ee) 45deg
col.inactive_border = rgba(${base02}99)
gaps_in = 5
gaps_out = 10
border_size = 4
col.active_border = rgb(${base04}) rgb(${base05}) 45deg
col.inactive_border = rgb(${base02})
layout = master
}
decoration {
rounding = 0
rounding = 8
drop_shadow = yes
shadow_range = 4
shadow_render_power = 3
Expand Down Expand Up @@ -254,6 +254,7 @@ in
master {
new_is_master = no
new_on_top = no
no_gaps_when_only = yes
mfact = 0.65
special_scale_factor = 1
}
Expand Down

0 comments on commit 476e11f

Please sign in to comment.