diff options
author | David BELEY <[email protected]> | 2023-02-10 01:43:01 +0100 |
---|---|---|
committer | GitHub <[email protected]> | 2023-02-10 00:43:01 +0000 |
commit | 7b05133af0ce4434aa80642ebb4e1bb8054444a6 (patch) | |
tree | be141a653087adebffb0e462fd1438c6a1ed4395 | |
parent | 68f56130baeff33707fc44d4fc21c5f334ef7e41 (diff) | |
download | Hyprland-7b05133af0ce4434aa80642ebb4e1bb8054444a6.tar.gz Hyprland-7b05133af0ce4434aa80642ebb4e1bb8054444a6.zip |
Only use true/false in default config to reduce confusion (#1517)
-rw-r--r-- | example/hyprland.conf | 22 |
1 files changed, 11 insertions, 11 deletions
diff --git a/example/hyprland.conf b/example/hyprland.conf index 0b72afd9..364188b3 100644 --- a/example/hyprland.conf +++ b/example/hyprland.conf @@ -30,7 +30,7 @@ input { follow_mouse = 1 touchpad { - natural_scroll = no + natural_scroll = false } sensitivity = 0 # -1.0 - 1.0, 0 means no modification. @@ -52,19 +52,19 @@ decoration { # See https://wiki.hyprland.org/Configuring/Variables/ for more rounding = 10 - blur = yes + blur = true blur_size = 3 blur_passes = 1 - blur_new_optimizations = on + blur_new_optimizations = true - drop_shadow = yes + drop_shadow = true shadow_range = 4 shadow_render_power = 3 col.shadow = rgba(1a1a1aee) } animations { - enabled = yes + enabled = true # Some default animations, see https://wiki.hyprland.org/Configuring/Animations/ for more @@ -80,8 +80,8 @@ animations { dwindle { # See https://wiki.hyprland.org/Configuring/Dwindle-Layout/ for more - pseudotile = yes # master switch for pseudotiling. Enabling is bound to mainMod + P in the keybinds section below - preserve_split = yes # you probably want this + pseudotile = true # master switch for pseudotiling. Enabling is bound to mainMod + P in the keybinds section below + preserve_split = true # you probably want this } master { @@ -91,7 +91,7 @@ master { gestures { # See https://wiki.hyprland.org/Configuring/Variables/ for more - workspace_swipe = off + workspace_swipe = false } # Example per-device config @@ -112,10 +112,10 @@ $mainMod = SUPER # Example binds, see https://wiki.hyprland.org/Configuring/Binds/ for more bind = $mainMod, Q, exec, kitty -bind = $mainMod, C, killactive, -bind = $mainMod, M, exit, +bind = $mainMod, C, killactive, +bind = $mainMod, M, exit, bind = $mainMod, E, exec, dolphin -bind = $mainMod, V, togglefloating, +bind = $mainMod, V, togglefloating, bind = $mainMod, R, exec, wofi --show drun bind = $mainMod, P, pseudo, # dwindle bind = $mainMod, J, togglesplit, # dwindle |