Update 2023-11-08 11:02 OpenBSD/amd64-x13

This commit is contained in:
c0dev0id 2023-11-08 11:02:37 +01:00
parent f8886aaf01
commit 80431dc70e
1 changed files with 17 additions and 0 deletions

View File

@ -0,0 +1,17 @@
-- create ws (if not present) and switch
function ws_switch_or_create(ws)
if not WScreen.switch_nth(_, ws) then
ioncore.create_ws(_, ws)
WScreen.switch_nth(_, ws)
end
end
-- ideally, if I leave a workspace with nothing but an empty frame, it could be deleted.
-- but that's for another year.
-- later mapped to META..0-9
ioncore.defbindings("WScreen", {
kpress(META.."5", "ws_switch_or_create(5)"),
kpress(META.."6", "ws_switch_or_create(6)"),
kpress(META.."7", "ws_switch_or_create(7)"),
})