From a313624734dde8b2f562eb0815c52e93b00f7986 Mon Sep 17 00:00:00 2001 From: 2 * r + 2 * t <61896496+soramanew@users.noreply.github.com> Date: Tue, 14 Jan 2025 15:41:28 +1100 Subject: launcher modes + player controls IPC --- app.tsx | 5 +++++ 1 file changed, 5 insertions(+) (limited to 'app.tsx') diff --git a/app.tsx b/app.tsx index db766c8..86d98e6 100644 --- a/app.tsx +++ b/app.tsx @@ -4,6 +4,7 @@ import AstalHyprland from "gi://AstalHyprland"; import Bar from "./modules/bar"; import Launcher from "./modules/launcher"; import NotifPopups from "./modules/notifpopups"; +import Players from "./services/players"; import { PopupWindow } from "./utils/widgets"; const loadStyleAsync = async () => { @@ -29,6 +30,10 @@ App.start({ let log = true; if (request === "reload css") loadStyleAsync().catch(console.error); + else if (request === "media play pause") Players.get_default().lastPlayer?.play_pause(); + else if (request === "media next") Players.get_default().lastPlayer?.next(); + else if (request === "media previous") Players.get_default().lastPlayer?.previous(); + else if (request === "media stop") Players.get_default().lastPlayer?.stop(); else if (request.startsWith("toggle")) { const window = App.get_window(request.slice(7)); if (window instanceof PopupWindow) window.toggle(); -- cgit v1.2.3-freya