summaryrefslogtreecommitdiff
path: root/src/caelestia/subcommands/toggle.py
diff options
context:
space:
mode:
author2 * r + 2 * t <61896496+soramanew@users.noreply.github.com>2025-06-14 22:50:55 +1000
committerGitHub <noreply@github.com>2025-06-14 22:50:55 +1000
commitee7291b7f64a359d17eb1d050086ef5357d79055 (patch)
treef1c200d8c8ba81030cbb2113a2be122db6508c8f /src/caelestia/subcommands/toggle.py
parentMerge pull request #5 from dalpax/patch-1 (diff)
parentMerge branch 'main' into python-rework (diff)
downloadcaelestia-cli-ee7291b7f64a359d17eb1d050086ef5357d79055.tar.gz
caelestia-cli-ee7291b7f64a359d17eb1d050086ef5357d79055.tar.bz2
caelestia-cli-ee7291b7f64a359d17eb1d050086ef5357d79055.zip
Merge pull request #6 from caelestia-dots/python-rework
feat: rewrite in python
Diffstat (limited to 'src/caelestia/subcommands/toggle.py')
-rw-r--r--src/caelestia/subcommands/toggle.py75
1 files changed, 75 insertions, 0 deletions
diff --git a/src/caelestia/subcommands/toggle.py b/src/caelestia/subcommands/toggle.py
new file mode 100644
index 0000000..b8ad11b
--- /dev/null
+++ b/src/caelestia/subcommands/toggle.py
@@ -0,0 +1,75 @@
+import subprocess
+from argparse import Namespace
+
+from caelestia.utils import hypr
+
+
+class Command:
+ args: Namespace
+ clients: list[dict[str, any]] = None
+
+ def __init__(self, args: Namespace) -> None:
+ self.args = args
+
+ def run(self) -> None:
+ getattr(self, self.args.workspace)()
+
+ def get_clients(self) -> list[dict[str, any]]:
+ if self.clients is None:
+ self.clients = hypr.message("clients")
+
+ return self.clients
+
+ def move_client(self, selector: callable, workspace: str) -> None:
+ for client in self.get_clients():
+ if selector(client):
+ hypr.dispatch("movetoworkspacesilent", f"special:{workspace},address:{client['address']}")
+
+ def spawn_client(self, selector: callable, spawn: list[str]) -> bool:
+ exists = any(selector(client) for client in self.get_clients())
+
+ if not exists:
+ subprocess.Popen(["app2unit", "--", *spawn], start_new_session=True)
+
+ return not exists
+
+ def spawn_or_move(self, selector: callable, spawn: list[str], workspace: str) -> None:
+ if not self.spawn_client(selector, spawn):
+ self.move_client(selector, workspace)
+
+ def communication(self) -> None:
+ self.spawn_or_move(lambda c: c["class"] == "discord", ["discord"], "communication")
+ self.move_client(lambda c: c["class"] == "whatsapp", "communication")
+ hypr.dispatch("togglespecialworkspace", "communication")
+
+ def music(self) -> None:
+ self.spawn_or_move(
+ lambda c: c["class"] == "Spotify" or c["initialTitle"] == "Spotify" or c["initialTitle"] == "Spotify Free",
+ ["spicetify", "watch", "-s"],
+ "music",
+ )
+ self.move_client(lambda c: c["class"] == "feishin", "music")
+ hypr.dispatch("togglespecialworkspace", "music")
+
+ def sysmon(self) -> None:
+ self.spawn_client(
+ lambda c: c["class"] == "btop" and c["title"] == "btop" and c["workspace"]["name"] == "special:sysmon",
+ ["foot", "-a", "btop", "-T", "btop", "--", "btop"],
+ )
+ hypr.dispatch("togglespecialworkspace", "sysmon")
+
+ def todo(self) -> None:
+ self.spawn_or_move(lambda c: c["class"] == "Todoist", ["todoist"], "todo")
+ hypr.dispatch("togglespecialworkspace", "todo")
+
+ def specialws(self) -> None:
+ workspaces = hypr.message("workspaces")
+ on_special_ws = any(ws["name"] == "special:special" for ws in workspaces)
+ toggle_ws = "special"
+
+ if not on_special_ws:
+ active_ws = hypr.message("activewindow")["workspace"]["name"]
+ if active_ws.startswith("special:"):
+ toggle_ws = active_ws[8:]
+
+ hypr.dispatch("togglespecialworkspace", toggle_ws)