|
|
@@ -24,7 +24,7 @@ class Space:
|
|
|
def __repr__(self) -> str:
|
|
|
return (
|
|
|
f"Space({self.label if self.label and len(self.label) > 0 else '<NoLabel>'}"
|
|
|
- f",{self.index}"
|
|
|
+ f", {self.index}"
|
|
|
f"{', Fullscreen' if self.is_native_fullscreen else ''}"
|
|
|
f"{', Focused' if self.has_focus else ''})"
|
|
|
)
|
|
|
@@ -64,8 +64,8 @@ class Yabai:
|
|
|
("Finder", False, ["Finder"]),
|
|
|
("Terminal", True, ["Alacritty"]),
|
|
|
("Browser", True, ["Firefox"]),
|
|
|
- ("Communication", False, ["Slack", "Signal", "Spotify"]),
|
|
|
- ("Notetaking", True, ["Obsidian"]),
|
|
|
+ ("Communication", False, ["Slack", "Signal", "Spotify", "Notion"]),
|
|
|
+ ("Notetaking", True, ["Obsidian", "Asana"]),
|
|
|
]
|
|
|
_initial_window: int | None = None
|
|
|
|