Skip to content

Instantly share code, notes, and snippets.

@tkdchen
Last active April 11, 2022 20:43
Show Gist options
  • Save tkdchen/5765529 to your computer and use it in GitHub Desktop.
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.
<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