fix: hyprland client title not set correctly when containing a comma (#111)

This commit is contained in:
kotontrion
2023-09-28 13:09:02 +02:00
committed by GitHub
parent f987765404
commit 70041f3f9e
+1 -1
View File
@@ -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':