From cc220f0c7b2b952c60dee80b4fd13625a30c15e2 Mon Sep 17 00:00:00 2001 From: Solomon Laing Date: Sun, 25 Apr 2021 18:57:00 +0930 Subject: [PATCH] added backlight script which can be updated to support more devices, also updated xmonad.hs to use 10% increments rather than 5% --- .local/bin/mod_backlight | 5 +++++ 1 file changed, 5 insertions(+) create mode 100755 .local/bin/mod_backlight diff --git a/.local/bin/mod_backlight b/.local/bin/mod_backlight new file mode 100755 index 0000000..116b7c7 --- /dev/null +++ b/.local/bin/mod_backlight @@ -0,0 +1,5 @@ +#!/bin/bash + +if command -v backlight_control &> /dev/null; then + backlight_control $1 +fi \ No newline at end of file