mirror of
https://github.com/ItsDrike/dotfiles.git
synced 2024-11-10 02:39:40 +00:00
Handle hyprctl returning invalid json
This commit is contained in:
parent
745e6838ec
commit
d918406072
|
@ -106,7 +106,15 @@ def get_workspaces() -> list[OutputWorkspaceInfo]:
|
||||||
"""Obtain workspaces from hyprctl, sort them and add format_name arg."""
|
"""Obtain workspaces from hyprctl, sort them and add format_name arg."""
|
||||||
proc = subprocess.run(["hyprctl", "workspaces", "-j"], stdout=subprocess.PIPE)
|
proc = subprocess.run(["hyprctl", "workspaces", "-j"], stdout=subprocess.PIPE)
|
||||||
proc.check_returncode()
|
proc.check_returncode()
|
||||||
|
try:
|
||||||
workspaces: list[WorkspaceInfo] = json.loads(proc.stdout)
|
workspaces: list[WorkspaceInfo] = json.loads(proc.stdout)
|
||||||
|
except json.JSONDecodeError:
|
||||||
|
sys.stderr.writelines([
|
||||||
|
"Error decoding json response from hyprctl, returning empty workspaces",
|
||||||
|
f"Actual captured output from hyprctl: {proc.stdout!r}"
|
||||||
|
])
|
||||||
|
sys.stderr.flush()
|
||||||
|
workspaces = []
|
||||||
|
|
||||||
proc = subprocess.run(["hyprctl", "monitors", "-j"], stdout=subprocess.PIPE)
|
proc = subprocess.run(["hyprctl", "monitors", "-j"], stdout=subprocess.PIPE)
|
||||||
proc.check_returncode()
|
proc.check_returncode()
|
||||||
|
|
Loading…
Reference in a new issue