diff --git a/hosts/bunk/settings.nix b/hosts/bunk/settings.nix index a74c5580..ef47b158 100644 --- a/hosts/bunk/settings.nix +++ b/hosts/bunk/settings.nix @@ -10,7 +10,7 @@ name = "DP-3"; width = 2560; height = 1440; - refreshRate = 240; + refreshRate = "143.99"; position = "0x0"; transform = 0; bitDepth = 10; @@ -20,7 +20,7 @@ name = "HDMI-A-1"; width = 1920; height = 1080; - refreshRate = 60; + refreshRate = "60"; position = "2560x0"; # transform = 3; workspace = "5"; @@ -29,7 +29,7 @@ name = "eDP-1"; width = 1920; height = 1200; - refreshRate = 60; + refreshRate = "60"; workspace = "1"; } ]; diff --git a/hosts/kima/settings.nix b/hosts/kima/settings.nix index 0debd06e..0e518c3b 100644 --- a/hosts/kima/settings.nix +++ b/hosts/kima/settings.nix @@ -10,7 +10,7 @@ name = "DP-3"; width = 2560; height = 1440; - refreshRate = 240; + refreshRate = "143.99"; position = "0x0"; transform = 0; bitDepth = 10; @@ -20,7 +20,7 @@ name = "HDMI-A-1"; width = 1920; height = 1080; - refreshRate = 60; + refreshRate = "60"; position = "2560x0"; transform = 3; workspace = "5"; @@ -29,7 +29,7 @@ name = "eDP-1"; width = 1920; height = 1200; - refreshRate = 60; + refreshRate = "60"; workspace = "1"; } ]; diff --git a/hosts/toothpc/settings.nix b/hosts/toothpc/settings.nix index 37bfa915..90145edf 100644 --- a/hosts/toothpc/settings.nix +++ b/hosts/toothpc/settings.nix @@ -10,7 +10,7 @@ name = "DVI-D-1"; width = 1920; height = 1080; - refreshRate = 144; + refreshRate = "144"; position = "0x0"; transform = 0; workspace = "1"; diff --git a/modules/home/programs/waybar/config/config.jsonc b/modules/home/programs/waybar/config/config.jsonc index 523da8a1..3b88d857 100644 --- a/modules/home/programs/waybar/config/config.jsonc +++ b/modules/home/programs/waybar/config/config.jsonc @@ -126,9 +126,13 @@ "all-outputs": false, "format": "{icon}", "format-icons": { - "urgent": "", - "visible": "", - "empty": "" + "1": "1", + "2": "2", + "3": "3", + "4": "4", + "5": "5", + "active": "_", + "default": "_" }, "on-click": "activate", "show-special": false, diff --git a/modules/home/programs/waybar/config/style.css b/modules/home/programs/waybar/config/style.css index 00a8c5ac..4283d810 100644 --- a/modules/home/programs/waybar/config/style.css +++ b/modules/home/programs/waybar/config/style.css @@ -28,8 +28,8 @@ tooltip label { margin: 0 0px; background-color: transparent; color: #fbf1c7; - border-top: 3px solid transparent; - border-bottom: 3px solid transparent; + border-top: 2px solid transparent; + border-bottom: 2px solid transparent; } #workspaces button:hover { @@ -45,7 +45,7 @@ tooltip label { background-image: url("assets/button.svg"); background-position: center; background-repeat: no-repeat; - background-size: 18px 15px; + background-size: 24px 20px; } #custom-trayicon { diff --git a/modules/nixos/programs/hyprland/layout.nix b/modules/nixos/programs/hyprland/layout.nix index 492bd0fa..6d9afdab 100644 --- a/modules/nixos/programs/hyprland/layout.nix +++ b/modules/nixos/programs/hyprland/layout.nix @@ -21,7 +21,7 @@ in let resolution = if m.width != null && m.height != null then - "${toString m.width}x${toString m.height}@${toString m.refreshRate}" + "${toString m.width}x${toString m.height}@${m.refreshRate}" else "preferred"; diff --git a/modules/settings/monitors/default.nix b/modules/settings/monitors/default.nix index d5306ca1..23d46e37 100644 --- a/modules/settings/monitors/default.nix +++ b/modules/settings/monitors/default.nix @@ -21,8 +21,8 @@ in example = 1080; }; refreshRate = mkOption { - type = types.int; - default = 60; + type = types.str; + default = "60"; }; transform = mkOption { type = types.int;