From 55ed89d73b6f7f9c182086ddbea4af84f04f473c Mon Sep 17 00:00:00 2001 From: Armel van Ravels Date: Mon, 15 Jun 2026 10:25:29 +0200 Subject: [PATCH] Fix resolution --- systems/modules/home/wm/hyprland.nix | 6 ++++++ systems/modules/home/wm/hyprpaper.nix | 8 +++++++- 2 files changed, 13 insertions(+), 1 deletion(-) diff --git a/systems/modules/home/wm/hyprland.nix b/systems/modules/home/wm/hyprland.nix index 325e0af..8849c2f 100644 --- a/systems/modules/home/wm/hyprland.nix +++ b/systems/modules/home/wm/hyprland.nix @@ -161,6 +161,12 @@ in (mkLuaInline '' function() hl.exec_cmd("waybar") + hl.monitor({ + output = "", + mode = "preferred", + position = "auto", + scale = 1, + }) end'') ]; }; diff --git a/systems/modules/home/wm/hyprpaper.nix b/systems/modules/home/wm/hyprpaper.nix index c9a9805..83dfc89 100644 --- a/systems/modules/home/wm/hyprpaper.nix +++ b/systems/modules/home/wm/hyprpaper.nix @@ -10,14 +10,20 @@ in enable = true; settings = { + splash = false; preload = [ wallpaper wallpaper2 wallpaper3 ]; + wallpaper = [ - ",${wallpaper3}" + { + monitor = ""; + path = wallpaper3; + } ]; }; }; } +