mirror of
https://github.com/arthur-pbty/arthur-os.git
synced 2026-08-01 20:28:16 +02:00
14 lines
761 B
Lua
14 lines
761 B
Lua
require("default.hypr.bindings.media")
|
|
require("default.hypr.bindings.clipboard")
|
|
require("default.hypr.bindings.tiling-v2")
|
|
require("default.hypr.bindings.utilities")
|
|
|
|
-- Application bindings without Omarchy's preinstalled web apps, TUIs, or desktop apps.
|
|
o.bind("SUPER + RETURN", "Terminal", { omarchy = "terminal" })
|
|
o.bind("SUPER + SHIFT + RETURN", "Browser", { omarchy = "browser" })
|
|
o.bind("SUPER + SHIFT + F", "File manager", { omarchy = "nautilus" })
|
|
o.bind("SUPER + ALT + SHIFT + F", "File manager (cwd)", { omarchy = "nautilus-cwd" })
|
|
o.bind("SUPER + SHIFT + B", "Browser", { omarchy = "browser" })
|
|
o.bind("SUPER + SHIFT + ALT + B", "Browser (private)", { omarchy = "browser --private" })
|
|
o.bind("SUPER + SHIFT + N", "Editor", { omarchy = "editor" })
|