From 70041f3f9e5a1136727ac15fa7a5179a9d1b1213 Mon Sep 17 00:00:00 2001 From: kotontrion <141950090+kotontrion@users.noreply.github.com> Date: Thu, 28 Sep 2023 13:09:02 +0200 Subject: [PATCH] fix: hyprland client title not set correctly when containing a comma (#111) --- src/service/hyprland.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/service/hyprland.ts b/src/service/hyprland.ts index e1eff31..5e273d1 100644 --- a/src/service/hyprland.ts +++ b/src/service/hyprland.ts @@ -183,7 +183,7 @@ class HyprlandService extends Service { case 'activewindow': this._active.client.class = argv[0]; - this._active.client.title = argv[1]; + this._active.client.title = argv.slice(1).join(','); break; case 'activewindowv2':