From 0dfab885ef907005c055a949d065a76ed2c69f87 Mon Sep 17 00:00:00 2001 From: CDaut Date: Thu, 18 Apr 2024 22:57:06 +0200 Subject: [PATCH] fix X using stupidity --- programm_configs/autorandr.nix | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) diff --git a/programm_configs/autorandr.nix b/programm_configs/autorandr.nix index 20560c2..5d9b4e1 100644 --- a/programm_configs/autorandr.nix +++ b/programm_configs/autorandr.nix @@ -29,6 +29,12 @@ let y = 0.5; }; }; + mobileconf = { + enable = true; + primary = true; + mode = "3840x2160"; + dpi = 210; + }; in { programs.autorandr = { @@ -48,6 +54,18 @@ in eDP-2 = internalconf; }; }; + "mobile1" = { + fingerprint = fingerprints; + config = { + eDP-1 = mobileconf; + }; + }; + "mobile2" = { + fingerprint = fingerprints; + config = { + eDP-2 = mobileconf; + }; + }; }; }; }