mirror of
https://github.com/donovanglover/nix-config.git
synced 2025-06-21 18:21:31 +02:00
hyprland: Revert border/gaps change
Should be able to fix hyprdim soon.
This commit is contained in:
parent
b9cabc0e45
commit
47c716b3ff
@ -100,14 +100,14 @@ in
|
|||||||
};
|
};
|
||||||
|
|
||||||
general = {
|
general = {
|
||||||
gaps_in = 5;
|
gaps_in = 0;
|
||||||
gaps_out = 10;
|
gaps_out = 0;
|
||||||
border_size = 4;
|
border_size = 0;
|
||||||
layout = "master";
|
layout = "master";
|
||||||
};
|
};
|
||||||
|
|
||||||
decoration = {
|
decoration = {
|
||||||
rounding = 8;
|
rounding = 0;
|
||||||
drop_shadow = true;
|
drop_shadow = true;
|
||||||
shadow_range = 4;
|
shadow_range = 4;
|
||||||
shadow_render_power = 3;
|
shadow_render_power = 3;
|
||||||
@ -141,7 +141,6 @@ in
|
|||||||
master = {
|
master = {
|
||||||
new_is_master = false;
|
new_is_master = false;
|
||||||
new_on_top = false;
|
new_on_top = false;
|
||||||
no_gaps_when_only = true;
|
|
||||||
mfact = 0.65;
|
mfact = 0.65;
|
||||||
special_scale_factor = 1;
|
special_scale_factor = 1;
|
||||||
};
|
};
|
||||||
@ -293,7 +292,7 @@ in
|
|||||||
#!/usr/bin/env bash
|
#!/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_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:gaps_in $((5 - $(hyprctl getoption general:gaps_in -j | jq -r ".custom" | choose 1)))
|
||||||
hyprctl keyword general:border_size $((4 - $(hyprctl getoption general:border_size -j | jq -r ".int")))
|
hyprctl keyword general:border_size $((2 - $(hyprctl getoption general:border_size -j | jq -r ".int")))
|
||||||
hyprctl keyword decoration:rounding $((8 - $(hyprctl getoption decoration:rounding -j | jq -r ".int")))
|
hyprctl keyword decoration:rounding $((8 - $(hyprctl getoption decoration:rounding -j | jq -r ".int")))
|
||||||
'';
|
'';
|
||||||
};
|
};
|
||||||
|
Loading…
x
Reference in New Issue
Block a user