mirror of
https://github.com/zoriya/ags.git
synced 2026-06-09 04:46:08 +00:00
fix hyprland keyboard-layout signal #52
This commit is contained in:
@@ -184,11 +184,10 @@ class HyprlandService extends Service {
|
||||
this.emit('urgent-window', argv[0]);
|
||||
break;
|
||||
|
||||
case 'activelayout': {
|
||||
const [kbName, layoutName] = argv[0].split(',');
|
||||
this.emit('keyboard-layout', `${kbName}`, `${layoutName}`);
|
||||
case 'activelayout':
|
||||
this.emit('keyboard-layout', `${argv[0]}`, `${argv[1]}`);
|
||||
break;
|
||||
}
|
||||
|
||||
case 'changefloating': {
|
||||
const client = this._clients.get(argv[0]);
|
||||
if (client)
|
||||
|
||||
Reference in New Issue
Block a user