hidpi stuff

This commit is contained in:
uku 2024-02-13 16:57:02 +01:00
parent 790c40f6da
commit d8258b08d4
Signed by: uku
SSH key fingerprint: SHA256:4P0aN6M8ajKukNi6aPOaX0LacanGYtlfjmN+m/sHY/o
2 changed files with 11 additions and 3 deletions

View file

@ -28,7 +28,7 @@
"$wl-paste" = getExe' wl-clipboard "wl-paste";
"$wpctl" = getExe' wireplumber "wpctl";
monitor = ",highres,auto,1";
monitor = lib.mkDefault ",highres,auto,1";
env = [
"WLR_DRM_NO_ATOMIC,1"

View file

@ -1,5 +1,4 @@
{
lib,
pkgs,
...
}: {
@ -10,6 +9,15 @@
hm = {
home.packages = with pkgs; [ryujinx];
wayland.windowManager.hyprland.settings.monitor = lib.mkForce ["DP-1,3840x2160@144,0x0,1.5" "HDMI-A-1,1440x900@60,1920x300,1"];
wayland.windowManager.hyprland.settings = {
monitor = "DP-1,3840x2160@144,0x0,1.5";
xwayland.force_zero_scaling = true;
env = [
"GDK_SCALE,1.5"
"XCURSOR_SIZE,24"
];
};
};
}