diff --git a/home/fhauser/applications/kanshi.nix b/home/fhauser/applications/kanshi.nix index fd02e2b..72d6d04 100644 --- a/home/fhauser/applications/kanshi.nix +++ b/home/fhauser/applications/kanshi.nix @@ -13,6 +13,7 @@ mkScreen = display: position: { inherit (display.output) criteria; inherit position; + status = "enable"; }; mkProfile = name: outputs: { profile = { @@ -47,11 +48,18 @@ criteria = "Lenovo Group Limited LEN P24h-20 V307DA61"; scale = null; }; + estonia-tv.output = { + criteria = "Samsung Electric Company SAMSUNG 0x01000E00"; + scale = 2.0; + }; }; in with lib; (attrValues screens) ++ (with screens; [ + (mkProfile "mobile-only" [ + (mkScreen x1-screen "0,0") + ]) (mkProfile "home-dock" [ (mkScreen x1-screen "0,120") (mkScreen chur-4k "1920,0") @@ -60,6 +68,10 @@ (mkScreen x1-screen "0,0") (mkScreen estonia-thinkvision "1920,0") ]) + (mkProfile "tv" [ + ((mkScreen x1-screen "0,0") // { status = "disable"; }) + (mkScreen estonia-tv "0,0") + ]) ]); }; }