24/07/2026

This commit is contained in:
Domipoke
2026-07-24 12:16:36 +02:00
parent 59c8a994bf
commit 44b9c40c44
12 changed files with 994 additions and 64 deletions
+41
View File
@@ -0,0 +1,41 @@
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)