From ff96aaa5f7c79a08963bfd297ce649e49707bdf4 Mon Sep 17 00:00:00 2001 From: Frantisek Bohacek Date: Sat, 11 May 2024 21:30:16 +0200 Subject: [PATCH] chore: update kanshi options to new ones --- home/modules/profiles/desktop/dwl/default.nix | 25 +++++++++++-------- 1 file changed, 14 insertions(+), 11 deletions(-) diff --git a/home/modules/profiles/desktop/dwl/default.nix b/home/modules/profiles/desktop/dwl/default.nix index 7560f3e..e54962b 100644 --- a/home/modules/profiles/desktop/dwl/default.nix +++ b/home/modules/profiles/desktop/dwl/default.nix @@ -138,29 +138,32 @@ in { services.kanshi = { enable = true; systemdTarget = "wlr-session.target"; - profiles = { - ntb = { - outputs = [ + settings = [ + { + profile.name = "ntb"; + profile.outputs = [ { criteria = "eDP-1"; status = "enable"; mode = "1920x1200"; position = "0,0"; } ]; - }; - docked-1 = { - outputs = [ + } + { + profile.name = "docked-1"; + profile.outputs = [ { criteria = "DP-7"; position = "1920,0"; } { criteria = "DP-8"; position = "3840,0"; } { criteria = "DP-9"; position = "0,0"; } { criteria = "eDP-1"; status = "disable"; } ]; - }; - docked-2 = { - outputs = [ + } + { + profile.name = "docked-2"; + profile.outputs = [ { criteria = "DP-10"; position = "1920,0"; } { criteria = "DP-11"; position = "3840,0"; } { criteria = "DP-12"; position = "0,0"; } { criteria = "eDP-1"; status = "disable"; } ]; - }; - }; + } + ]; }; services.gammastep = { -- 2.48.1