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; + }; + }; }; }; }