* feat: add keybind cheatsheet * docs: refresh keybind cheatsheet preview * docs: use official generated keybind thumbnail * feat(keybind-cheatsheet): preload cached snapshots Move parser and cache ownership into an event-driven data service so the panel opens from a prepared last-known-good snapshot. Document the plugin's inspiration and independent v5 implementation.
10 lines
248 B
Lua
10 lines
248 B
Lua
-- 1. Applications
|
|
Hyprland.config.bind("SUPER, T", launch_terminal, { description = "Terminal" })
|
|
|
|
-- 2. Workspaces
|
|
for i = 1, 9 do
|
|
Hyprland.config.bind("SUPER, " .. i, workspace, { description = "Workspace " .. i })
|
|
end
|
|
|
|
require("parts.media")
|