From 94bd9f1c63e24f93088e3f8faef0f86f0c8e2f88 Mon Sep 17 00:00:00 2001 From: Holden Rohrer Date: Thu, 4 Jun 2020 22:56:07 -0400 Subject: i3/lightup handles zero brightness --- home/.config/i3/lightup | 6 ++++++ 1 file changed, 6 insertions(+) create mode 100755 home/.config/i3/lightup (limited to 'home/.config/i3/lightup') diff --git a/home/.config/i3/lightup b/home/.config/i3/lightup new file mode 100755 index 0000000..7104923 --- /dev/null +++ b/home/.config/i3/lightup @@ -0,0 +1,6 @@ +#!/bin/sh +if [ $(light) = 0.00 ]; then + light -S 0.07; +else + light -S $(echo 1.122\*$(light) | bc); +fi; -- cgit