regular update
This commit is contained in:
parent
d33ecc32e7
commit
3347dada32
22 changed files with 322 additions and 70 deletions
|
|
@ -42,18 +42,22 @@ device {
|
|||
$mainMod = SUPER # Sets "Windows" key as main modifier
|
||||
|
||||
# Example binds, see https://wiki.hyprland.org/Configuring/Binds/ for more
|
||||
|
||||
# Main desktop controls
|
||||
bind = $mainMod, Q, killactive,
|
||||
bind = $mainMod, R, exec, $menu # Omnibar
|
||||
bind = $mainMod, D, exec, $menu # Legacy menu shortcut
|
||||
bind = $mainMod, L, exec, hyprlock # Lockscreen
|
||||
bind = $mainMod, B, exec, ~/.config/hypr/scripts/toggle-waybar.sh # Toggle sidebar
|
||||
bind = $mainMod SHIFT, R, exec, ~/.config/hypr/scripts/reload.sh # Reload desktop
|
||||
bind = $mainMod, F11, exec, ~/.config/hypr/scripts/gamemode.sh # Gamemode
|
||||
bind = $mainMod SHIFT, M, exit, # Exit desktop session
|
||||
|
||||
# Shortcuts
|
||||
bind = $mainMod, RETURN, exec, $terminal
|
||||
bind = $mainMod, SPACE, exec, $terminal
|
||||
bind = $mainMod, Q, killactive,
|
||||
bind = $mainMod SHIFT, M, exit,
|
||||
bind = $mainMod, E, exec, $fileManager
|
||||
bind = $mainMod, T, togglefloating,
|
||||
bind = $mainMod, D, exec, $menu
|
||||
bind = $mainMod, R, exec, $menu
|
||||
bind = $mainMod, H, pseudo, # dwindle
|
||||
bind = $mainMod, V, togglesplit, # dwindle
|
||||
bind = $mainMod, F, fullscreen,
|
||||
bind = $mainMod, L, exec, hyprlock
|
||||
bindel = , XF86Launch1, exec, kitty vim ~/.config/hypr/config
|
||||
|
||||
# Move focus with mainMod + arrow keys
|
||||
bind = $mainMod, left, movefocus, l
|
||||
|
|
@ -61,6 +65,12 @@ bind = $mainMod, right, movefocus, r
|
|||
bind = $mainMod, up, movefocus, u
|
||||
bind = $mainMod, down, movefocus, d
|
||||
|
||||
# Layout
|
||||
bind = $mainMod, F, fullscreen,
|
||||
bind = $mainMod, V, togglesplit, # Horizontal/vertical split
|
||||
bind = $mainMod, T, togglefloating,
|
||||
bind = $mainMod, H, pseudo, # Toggle pseudo-tiling
|
||||
|
||||
# Switch workspaces with mainMod + [0-9]
|
||||
bind = $mainMod, ampersand, workspace, 1
|
||||
bind = $mainMod, eacute, workspace, 2
|
||||
|
|
@ -105,40 +115,34 @@ bind = $mainMod, mouse_up, workspace, e-1
|
|||
bindm = $mainMod, mouse:272, movewindow
|
||||
bindm = $mainMod, mouse:273, resizewindow
|
||||
|
||||
# Laptop multimedia keys for volume and LCD brightness
|
||||
|
||||
# Function keys
|
||||
|
||||
## Volume
|
||||
bindel = ,XF86AudioRaiseVolume, exec, wpctl set-volume -l 1 @DEFAULT_AUDIO_SINK@ 5%+
|
||||
bindel = ,XF86AudioLowerVolume, exec, wpctl set-volume @DEFAULT_AUDIO_SINK@ 5%-
|
||||
bindel = ,XF86AudioMute, exec, wpctl set-mute @DEFAULT_AUDIO_SINK@ toggle
|
||||
bindel = ,XF86AudioMicMute, exec, wpctl set-mute @DEFAULT_AUDIO_SOURCE@ toggle
|
||||
|
||||
bindel = ,XF86MonBrightnessUp, exec, brightnessctl s 6%+
|
||||
bindel = ,XF86MonBrightnessDown, exec, brightnessctl s 6%-
|
||||
bindel = SHIFT, XF86MonBrightnessUp, exec, brightnessctl s 2%+
|
||||
bindel = SHIFT, XF86MonBrightnessDown, exec, brightnessctl s 2%-
|
||||
## Brightness
|
||||
bindel = ,XF86MonBrightnessUp, exec, brightnessctl s 5%+
|
||||
bindel = ,XF86MonBrightnessDown, exec, brightnessctl s 5%-
|
||||
bindel = SHIFT, XF86MonBrightnessUp, exec, brightnessctl s 1%+
|
||||
bindel = SHIFT, XF86MonBrightnessDown, exec, brightnessctl s 1%-
|
||||
|
||||
# (Requires playerctl)
|
||||
## Player controls
|
||||
bindl = , XF86AudioNext, exec, playerctl next
|
||||
bindl = , XF86AudioPause, exec, playerctl play-pause
|
||||
bindl = , XF86AudioPlay, exec, playerctl play-pause
|
||||
bindl = , XF86AudioPrev, exec, playerctl previous
|
||||
|
||||
# Function keys
|
||||
|
||||
# Settings
|
||||
bindel = , XF86Launch1, exec, kitty vim ~/.config/hypr/config
|
||||
# Screenshot
|
||||
## Screenshot
|
||||
bind = , Print, exec, ~/.config/hypr/scripts/screenshot.sh
|
||||
# Touchpad toggle
|
||||
# (On galaxy books, pressing the disable touchpad key also triggers SUPER and CONTROL keys, this is why there are present here)
|
||||
|
||||
## Touchpad toggle
|
||||
### On galaxy books, pressing the disable touchpad key also triggers SUPER and
|
||||
### CONTROL keys, this is why there are present here
|
||||
bind = SUPER CONTROL, XF86TouchpadToggle, exec, ~/.config/hypr/scripts/toggle-touchpad.sh
|
||||
|
||||
# Desktop related shortcuts
|
||||
|
||||
# Toggle waybar
|
||||
bind = $mainMod, B, exec, ~/.config/hypr/scripts/toggle-waybar.sh
|
||||
|
||||
# Reload desktop
|
||||
bind = $mainMod SHIFT, R, exec, ~/.config/hypr/scripts/reload.sh
|
||||
|
||||
# Gamemode
|
||||
bind = $mainMod, F11, exec, ~/.config/hypr/scripts/gamemode.sh
|
||||
## Testing
|
||||
#bind = $mainMod, TAB, overview:toggle, toggle
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue