Add the installer, uninstaller, and generated docs

This commit is contained in:
2026-09-20 00:19:38 -04:00
parent 0c422e7345
commit 3e65d176e3
100 changed files with 2585 additions and 0 deletions
+15
View File
@@ -0,0 +1,15 @@
-- Essential application bindings.
o.bind("SUPER + RETURN", "Terminal", { blob = "terminal" })
o.bind("SUPER + SHIFT + RETURN", "Browser", { blob = "browser" })
o.bind("SUPER + SHIFT + F", "File manager", { blob = "nautilus" })
o.bind("SUPER + ALT + SHIFT + F", "File manager (cwd)", { blob = "nautilus-cwd" })
o.bind("SUPER + SHIFT + B", "Browser", { blob = "browser" })
o.bind("SUPER + SHIFT + ALT + B", "Browser (private)", { blob = "browser --private" })
o.bind("SUPER + SHIFT + N", "Editor", { blob = "editor" })
if o.preinstalled_bindings_enabled() then
o.bind("SUPER + SHIFT + M", "Music", { blob = "spotify" })
o.bind("SUPER + SHIFT + D", "Docker", { tui = "blob-launch-docker-tui" })
o.bind("SUPER + SHIFT + G", "Signal", { blob = "signal" })
o.bind("SUPER + SHIFT + O", "Obsidian", { launch = "obsidian", focus = "^obsidian$" })
end