Last active
January 19, 2022 16:21
-
-
Save nickpelone/02f834551bf917fc1f5e to your computer and use it in GitHub Desktop.
Volume keys for Openbox rc.xml (~/.config/openbox/rc.xml)
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!---volume keys--> | |
</keybind> | |
<keybind key="XF86AudioRaiseVolume"> | |
<action name="Execute"> | |
<execute>amixer sset Master 2+</execute> | |
</action> | |
</keybind> | |
<keybind key="XF86AudioLowerVolume"> | |
<action name="Execute"> | |
<execute>amixer sset Master 2-</execute> | |
</action> | |
</keybind> | |
<keybind key="XF86AudioMute"> | |
<action name="Execute"> | |
<execute>amixer sset Master 100-</execute> | |
</action> | |
</keybind> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment