add scaling parameter to monitor module
This commit is contained in:
parent
63b254cc4d
commit
0537951879
3 changed files with 6 additions and 1 deletions
|
@ -189,7 +189,7 @@
|
||||||
monitor = map (
|
monitor = map (
|
||||||
m: "${m.name},${
|
m: "${m.name},${
|
||||||
if m.enabled
|
if m.enabled
|
||||||
then "${toString m.width}x${toString m.height}@${toString m.refreshRate},${m.position},1"
|
then "${toString m.width}x${toString m.height}@${toString m.refreshRate},${m.position},${m.scale}"
|
||||||
else "disable"
|
else "disable"
|
||||||
}"
|
}"
|
||||||
) config.monitors;
|
) config.monitors;
|
||||||
|
|
|
@ -13,6 +13,7 @@
|
||||||
workspace = "1";
|
workspace = "1";
|
||||||
primary = true;
|
primary = true;
|
||||||
position = "0x0";
|
position = "0x0";
|
||||||
|
scale = "1.175000";
|
||||||
}
|
}
|
||||||
];
|
];
|
||||||
# Fix HiDPI scaling
|
# Fix HiDPI scaling
|
||||||
|
|
|
@ -41,6 +41,10 @@ in {
|
||||||
type = types.nullOr types.str;
|
type = types.nullOr types.str;
|
||||||
default = null;
|
default = null;
|
||||||
};
|
};
|
||||||
|
scale = mkOption {
|
||||||
|
type = types.nullOr types.str;
|
||||||
|
default = "1";
|
||||||
|
};
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
);
|
);
|
||||||
|
|
Loading…
Add table
Reference in a new issue