Re: Switch between workspaces by name
Jan Johansson <[email protected]>
| Newsgroups | gmane.comp.window-managers.ion.general |
|---|---|
| Message-ID | <[email protected]> |
Zsolt Udvari <[email protected]> wrote: > How can I switch workspace by name? I've searched in the > mailing list and I found this: With my three workspaces named "Fullscreen", "Hidden" and "Split" this is how I do it. defbindings("WScreen", { submap(PREFIX, { kpress("F", "ioncore.lookup_region('Fullscreen'):goto()"), kpress("H", "ioncore.lookup_region('Hidden'):goto()"), kpress("S", "ioncore.lookup_region('Split'):goto()"), } ), } )