diff options
author | vaxerski <[email protected]> | 2023-08-03 15:16:32 +0200 |
---|---|---|
committer | vaxerski <[email protected]> | 2023-08-03 15:16:37 +0200 |
commit | da46e01b9710fdb1d8b89d577677321101f9ed96 (patch) | |
tree | 8c8ec9a328a400ebcaf9945a4016df96b7970099 | |
parent | d96f8ff0fe44f874700c8c132086a206132635c5 (diff) | |
download | Hyprland-da46e01b9710fdb1d8b89d577677321101f9ed96.tar.gz Hyprland-da46e01b9710fdb1d8b89d577677321101f9ed96.zip |
config: update default config for new blur changes
-rw-r--r-- | example/hyprland.conf | 10 | ||||
-rw-r--r-- | src/config/defaultConfig.hpp | 10 |
2 files changed, 12 insertions, 8 deletions
diff --git a/example/hyprland.conf b/example/hyprland.conf index d6827b0a..895a44f2 100644 --- a/example/hyprland.conf +++ b/example/hyprland.conf @@ -55,10 +55,12 @@ decoration { # See https://wiki.hyprland.org/Configuring/Variables/ for more rounding = 10 - blur = true - blur_size = 3 - blur_passes = 1 - blur_new_optimizations = true + + blur { + enabled = true + size = 3 + passes = 1 + } drop_shadow = true shadow_range = 4 diff --git a/src/config/defaultConfig.hpp b/src/config/defaultConfig.hpp index 85d83dda..1793b4a1 100644 --- a/src/config/defaultConfig.hpp +++ b/src/config/defaultConfig.hpp @@ -64,10 +64,12 @@ decoration { # See https://wiki.hyprland.org/Configuring/Variables/ for more rounding = 10 - blur = yes - blur_size = 3 - blur_passes = 1 - blur_new_optimizations = on + + blur { + enabled = true + size = 3 + passes = 1 + } drop_shadow = yes shadow_range = 4 |