local reset = "reset" local hub = "hub" local social = "hub_social" local mail = "hub_mail" local music = "hub_music" hl.bind(mainMod .. " + code:" .. NUM_KEYS[10].code, hl.dsp.submap(hub)) hl.define_submap(hub, function () hl.bind("S", hl.dsp.submap(social)) -- hl.bind("G", hl.dsp.submap(mail)) hl.bind("M", hl.dsp.submap(music)) hl.bind("Escape", hl.dsp.submap(reset)) end) -- Social hl.define_submap(social, function () hl.bind("I", hl.dsp.exec_cmd(Instagram)) hl.bind("I", hl.dsp.submap(reset)) hl.bind("X", hl.dsp.exec_cmd(X)) hl.bind("X", hl.dsp.submap(reset)) hl.bind("D", hl.dsp.exec_cmd(Discord)) hl.bind("D", hl.dsp.submap(reset)) hl.bind("W", hl.dsp.exec_cmd(Whatsapp)) hl.bind("W", hl.dsp.submap(reset)) hl.bind("Escape", hl.dsp.submap(reset)) end) hl.define_submap(music, function () hl.bind("S", hl.dsp.exec_cmd(Spotify)) hl.bind("Escape", hl.dsp.submap(reset)) end)