-
Notifications
You must be signed in to change notification settings - Fork 11
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Fix config #21
base: master
Are you sure you want to change the base?
Fix config #21
Conversation
Switched everything to |
## Resizing windows | ||
# Activate keyboard window resize mode | ||
# https://wiki.hyprland.org/0.45.0/Configuring/Binds/#submaps | ||
# https://wiki.hyprland.org/0.45.0/Configuring/bindds/#submaps |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This link 404s
@@ -28,8 +28,8 @@ bindd = $mainMod, G, Remove gaps between window, exec, hyprctl --batch "keyword | |||
|
|||
# ======= Volume Control ======= | |||
|
|||
bindde = , XF86AudioLowerVolume, Decreases player audio volume, exec, pamixer -ud 3 && pamixer --get-volume > /tmp/$HYPRLAND_INSTANCE_SIGNATURE.wob | |||
bindde = , XF86AudioRaiseVolume, Increases player audio volume, exec, pamixer -ui 3 && pamixer --get-volume > /tmp/$HYPRLAND_INSTANCE_SIGNATURE.wob |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I believe bindde
is the correct bind to use here, since we want it to keep repeating itself when its held.
Done, my bad. |
I added the descriptions bindd instead of bind is needed to keep the descriptions, without it Hyprland will show errors.
from https://wiki.hyprland.org/Configuring/Binds/#bind-flags |
This wont change the current config though? |
Switch
bindd
andbindde
tobind
since this is the usual way of handling binds.