Last active
April 11, 2022 20:43
-
-
Save tkdchen/5765529 to your computer and use it in GitHub Desktop.
Add this piece of configuration into ~/.config/openbox/lxde-rc.xml. Then, Fn+Home and Fn+End can increase and decrease screen's brightness individually. After saving, issue command ``$ openbox --reconfigure`` to load new configuration.
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
<keybind key="XF86MonBrightnessUp"> | |
<action name="Execute"> | |
<command>xbacklight -inc 10%</command> | |
</action> | |
</keybind> | |
<keybind key="XF86MonBrightnessDown"> | |
<action name="Execute"> | |
<command>xbacklight -dec 10%</command> | |
</action> | |
</keybind> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment