Looks like there’s a breaking change in the syntax of the hyprland.conf file that came from yesterday’s update, as now things like blur_passes = ... don’t work anymore and need to be just passes = ... inside a blur namespace (not even sure this is the appropriate term?), ie something like:

    blur {
        enabled = false
        size = 3
        passes = 3
        new_optimizations = true
    }
  • @[email protected]
    link
    fedilink
    English
    4
    edit-2
    1 year ago

    It was enough for me to wipe my computer and try kde on Gentoo. I might come back, my patience runs short.

  • @the_crab_man
    link
    41 year ago

    I wonder why they chose this weird nonstandard config format instead of something like TOML

  • @talou
    link
    21 year ago

    Mmmh last upgrade is hyprland 0.28.0-1 for me. This new config generates error message…

    • AlmightySnoo 🐢🇮🇱🇺🇦OP
      link
      1
      edit-2
      1 year ago

      Mine was updated to that version too. My config snippet was just an example to highlight that prefixes don’t work anymore but the blur namespace itself has to be inside decoration, like this:

      decoration {
          rounding = 5
          blur {
              enabled = false
              size = 3
              passes = 3
              new_optimizations = true
          }
          drop_shadow = yes
          shadow_range = 2
          shadow_render_power = 3
          col.shadow = rgba(1a1a1aee)
      }