From 945e7dcce6b03b29c35c1815115aaa362ff76156 Mon Sep 17 00:00:00 2001 From: ItsDrike Date: Mon, 26 Jun 2023 14:18:34 +0200 Subject: [PATCH] Add new monitor variables (hyprland update) --- home/.config/eww/scripts/workspaces.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/home/.config/eww/scripts/workspaces.py b/home/.config/eww/scripts/workspaces.py index 3b5e1de..f3ff0f4 100755 --- a/home/.config/eww/scripts/workspaces.py +++ b/home/.config/eww/scripts/workspaces.py @@ -28,6 +28,8 @@ class MonitorInfo(TypedDict): id: int name: str description: str + make: str + model: str width: int height: int refreshRate: float @@ -39,6 +41,7 @@ class MonitorInfo(TypedDict): transform: int focused: bool dpmsStatus: bool + vrr: bool class OutputWorkspaceInfo(WorkspaceInfo):