13 lines
997 B
Lua
13 lines
997 B
Lua
hl.bind("SUPER + X", hl.dsp.submap("launch"), { description = "Launching programs" })
|
|
hl.bind("SUPER + D", hl.dsp.submap("device"), { description = "Device controls" })
|
|
hl.bind("SUPER + C", hl.dsp.submap("notifications"), { description = "Notifications management" })
|
|
hl.bind("SUPER + G", hl.dsp.submap("groups"), { description = "Window group management" })
|
|
hl.bind("SUPER + S", hl.dsp.submap("screenshot"), { description = "Screenshots" })
|
|
hl.bind("SUPER + W", hl.dsp.submap("window"), { description = "Window management" })
|
|
hl.bind("SUPER + A", hl.dsp.submap("workspace"), { description = "Workspace controls" })
|
|
hl.bind("SUPER + P", hl.dsp.submap("groupedlaunch"), { description = "Launch groups of programs" })
|
|
hl.bind("SUPER + Q", hl.dsp.window.close(), { description = "Close active window" })
|
|
|
|
hl.bind("SUPER + Space", hl.dsp.exec_cmd("hyprlauncher"), { description = "Toggle app launcher" })
|
|
hl.bind("SUPER + Escape", hl.dsp.exec_cmd("wlogout"), { description = "Toggle logout screen" })
|