mirror of
https://github.com/zoriya/ags.git
synced 2026-06-04 19:16:13 +00:00
fix: hyprland client title not set correctly when containing a comma (#111)
This commit is contained in:
@@ -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':
|
||||
|
||||
Reference in New Issue
Block a user