mirror of
https://github.com/basecamp/omarchy.git
synced 2025-08-03 23:29:23 +00:00

* fix: Use dynamic bindings list in omarchy-menu-keybindings We can use `hyprctl binds` to get a dynamic list of the currently-set key bindings. This allows for a custom user configuration that is split into arbitrary config files, and which makes use of `unbind` to remove default Omarchy key bindings. * chore: Support optional description for key bindings If the description is present, use it in the key bindings menu, instead of displaying some version of the dispatched command. * chore: Add some key binding description strings
82 lines
3.3 KiB
Plaintext
82 lines
3.3 KiB
Plaintext
# Learn how to configure Hyprland: https://wiki.hyprland.org/Configuring/
|
|
|
|
# You're encouraged to tailor your Hyprland config in this file by adding or overwriting any settings.
|
|
# But don't change anything that lives in ~/.local/share/omarchy, if you can help it!
|
|
# Those files are overwritten when Omarchy is updated.
|
|
|
|
# Change your personal monitor setup in here to keep the main config portable
|
|
source = ~/.config/hypr/monitors.conf
|
|
|
|
# Use defaults Omarchy defaults
|
|
source = ~/.local/share/omarchy/default/hypr/autostart.conf
|
|
source = ~/.local/share/omarchy/default/hypr/bindings/media.conf
|
|
source = ~/.local/share/omarchy/default/hypr/bindings/tiling.conf
|
|
source = ~/.local/share/omarchy/default/hypr/bindings/utilities.conf
|
|
source = ~/.local/share/omarchy/default/hypr/envs.conf
|
|
source = ~/.local/share/omarchy/default/hypr/looknfeel.conf
|
|
source = ~/.local/share/omarchy/default/hypr/input.conf
|
|
source = ~/.local/share/omarchy/default/hypr/windows.conf
|
|
source = ~/.config/omarchy/current/theme/hyprland.conf
|
|
|
|
# Application bindings
|
|
$terminal = uwsm app -- alacritty
|
|
$browser = uwsm app -- chromium --new-window --ozone-platform=wayland
|
|
$webapp = $browser --app
|
|
|
|
bindd = SUPER, return, Terminal, exec, $terminal
|
|
bindd = SUPER, F, File manager, exec, uwsm app -- nautilus --new-window
|
|
bindd = SUPER, B, Web browser, exec, $browser
|
|
bindd = SUPER, M, Music player, exec, uwsm app -- spotify
|
|
bindd = SUPER, N, Neovim, exec, $terminal -e nvim
|
|
bindd = SUPER, T, Top, exec, $terminal -e btop
|
|
bindd = SUPER, D, Lazy Docker, exec, $terminal -e lazydocker
|
|
bindd = SUPER, G, Signal messaging, exec, uwsm app -- signal-desktop
|
|
bindd = SUPER, O, Obsidian, exec, uwsm app -- obsidian -disable-gpu
|
|
bindd = SUPER, slash, Password manager, exec, uwsm app -- 1password
|
|
|
|
bindd = SUPER, A, ChatGPT, exec, $webapp="https://chatgpt.com"
|
|
bindd = SUPER SHIFT, A, Grok, exec, $webapp="https://grok.com"
|
|
bindd = SUPER, C, Hey calendar, exec, $webapp="https://app.hey.com/calendar/weeks/"
|
|
bindd = SUPER, E, Hey email, exec, $webapp="https://app.hey.com"
|
|
bindd = SUPER, Y, YouTube, exec, $webapp="https://youtube.com/"
|
|
bindd = SUPER SHIFT, G, WhatsApp, exec, $webapp="https://web.whatsapp.com/"
|
|
bindd = SUPER ALT, G, Google Messaging, exec, $webapp="https://messages.google.com/web/conversations"
|
|
bindd = SUPER, X, X/Twitter, exec, $webapp="https://x.com/"
|
|
bindd = SUPER SHIFT, X,X/Twitter compose, exec, $webapp="https://x.com/compose/post"
|
|
|
|
# Extra autostart processes
|
|
# exec-once = uwsm app -- my-service
|
|
|
|
# Extra env variables
|
|
# Note: You must relaunch Hyprland after changing envs (use Super+Esc, then Relaunch)
|
|
# env = MY_GLOBAL_ENV,setting
|
|
|
|
# Control your input devices
|
|
# See https://wiki.hypr.land/Configuring/Variables/#input
|
|
input {
|
|
# Use multiple keyboard layouts and switch between them with Alt + Space
|
|
# kb_layout = us,dk
|
|
kb_options = compose:caps # ,grp:alt_space_toggle
|
|
|
|
# Change speed of keyboard repeat
|
|
repeat_rate = 40
|
|
repeat_delay = 600
|
|
|
|
# Increase sensitity for mouse/trackpack (default: 0)
|
|
# sensitivity = 0.35
|
|
|
|
touchpad {
|
|
# Use natural (inverse) scrolling
|
|
# natural_scroll = true
|
|
|
|
# Use two-finger clicks for right-click instead of lower-right corner
|
|
# clickfinger_behavior = true
|
|
|
|
# Control the speed of your scrolling
|
|
scroll_factor = 0.4
|
|
}
|
|
}
|
|
|
|
# Scroll faster in the terminal
|
|
windowrule = scrolltouchpad 1.5, class:Alacritty
|