From a58b5e48bf96d7bd7ce483bff76850eb24638d85 Mon Sep 17 00:00:00 2001 From: Henry-Hiles Date: Fri, 17 Apr 2026 13:05:14 -0400 Subject: [PATCH] fix fmt compositor config --- clients/quadraticpc/fht-compositor.nix | 21 ++++++++++----------- 1 file changed, 10 insertions(+), 11 deletions(-) diff --git a/clients/quadraticpc/fht-compositor.nix b/clients/quadraticpc/fht-compositor.nix index c65e212..22d9b7d 100644 --- a/clients/quadraticpc/fht-compositor.nix +++ b/clients/quadraticpc/fht-compositor.nix @@ -46,17 +46,16 @@ action = "change-mwfact"; arg = 0.1; }; - - keybindings = builtins.listToAttrs ( - builtins.genList (i: { - name = "Super-${toString (i + 1)}"; - value = { - action = "focus-workspace"; - arg = i; - }; - }) 9 - ); - }; + } + // builtins.listToAttrs ( + builtins.genList (i: { + name = "Super-${toString (i + 1)}"; + value = { + action = "focus-workspace"; + arg = i; + }; + }) 9 + ); mousebinds = { Super-Left = "swap-tile";