* 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.
13 lines
254 B
KDL
13 lines
254 B
KDL
include "./parts/*.kdl"
|
|
|
|
binds {
|
|
// #"Applications"
|
|
Mod+T hotkey-overlay-title="Terminal" { spawn "foot"; }
|
|
Mod+B { spawn "firefox"; }
|
|
|
|
// #"Window Management"
|
|
Mod+Q hotkey-overlay-title="Close window" {
|
|
close-window;
|
|
}
|
|
}
|