All 176 bind descriptions across the shipped Hyprland binding files switch to Simplified Chinese; brand names stay English. Co-Authored-By: Claude Fable 5 <noreply@anthropic.com> Claude-Session: https://claude.ai/code/session_01QKxGW1raAWaqeU8WdHsMsp
26 lines
1.6 KiB
Lua
26 lines
1.6 KiB
Lua
-- Essential application bindings.
|
|
o.bind("SUPER + RETURN", "终端", { omarchy = "terminal" })
|
|
o.bind("SUPER + SHIFT + RETURN", "浏览器", { omarchy = "browser" })
|
|
o.bind("SUPER + SHIFT + F", "文件管理器", { omarchy = "nautilus" })
|
|
o.bind("SUPER + ALT + SHIFT + F", "文件管理器(当前目录)", { omarchy = "nautilus-cwd" })
|
|
o.bind("SUPER + SHIFT + B", "浏览器", { omarchy = "browser" })
|
|
o.bind("SUPER + SHIFT + ALT + B", "浏览器(无痕)", { omarchy = "browser --private" })
|
|
o.bind("SUPER + SHIFT + N", "编辑器", { omarchy = "editor" })
|
|
|
|
if o.preinstalled_bindings_enabled() then
|
|
-- Bindings for preinstalled Omarchy applications, TUIs, and web apps.
|
|
o.bind("SUPER + ALT + RETURN", "Tmux", { omarchy = "terminal-tmux" })
|
|
o.bind("SUPER + CTRL + RETURN", "Herdr", { omarchy = "terminal-herdr" })
|
|
o.bind("SUPER + SHIFT + M", "音乐", { omarchy = "spotify" })
|
|
o.bind("SUPER + SHIFT + ALT + M", "音乐 TUI", { tui = "cliamp", focus = true })
|
|
o.bind("SUPER + SHIFT + D", "Docker", { tui = "omarchy-launch-docker-tui" })
|
|
o.bind("SUPER + SHIFT + G", "Signal", { omarchy = "signal" })
|
|
o.bind("SUPER + SHIFT + O", "Obsidian", { launch = "obsidian", focus = "^obsidian$" })
|
|
o.bind("SUPER + SHIFT + W", "Omawrite", { launch = "omawrite" })
|
|
o.bind("SUPER + SHIFT + SLASH", "密码管理", { omarchy = "1password" })
|
|
|
|
o.bind("SUPER + SHIFT + A", "ChatGPT", { webapp = "https://chatgpt.com" })
|
|
o.bind("SUPER + SHIFT + ALT + A", "Grok", { webapp = "https://grok.com" })
|
|
o.bind("SUPER + SHIFT + Y", "YouTube", { webapp = "https://youtube.com/" })
|
|
end
|