5 lines
185 B
JavaScript
5 lines
185 B
JavaScript
export function focusWorkspace(event, context) {
|
|
console.log('Focus button clicked!', event, context);
|
|
const id = event.target.id;
|
|
context.providers.glazewm.focusWorkspace(id);
|
|
}
|