From 468a789dbc4b1928c035d8590895efc533520a27 Mon Sep 17 00:00:00 2001 From: Charles Cabergs Date: Wed, 24 Feb 2021 17:07:33 +0100 Subject: Updated file tree to match XDG base directory specification --- local/bin/backlight-ctl | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100755 local/bin/backlight-ctl (limited to 'local/bin/backlight-ctl') diff --git a/local/bin/backlight-ctl b/local/bin/backlight-ctl new file mode 100755 index 0000000..2963d83 --- /dev/null +++ b/local/bin/backlight-ctl @@ -0,0 +1,23 @@ +#!/bin/sh + +[ "$#" -ne 1 ] && exit 1; + + +if [ "$(hostname)" = manjaro ] +then + cmd=light + up_opt=-A + down_opt=-U +else + cmd=xbacklight + up_opt=-inc + down_opt=-dec +fi + +case "$1" in + "up") "$cmd" "$up_opt" 5 ;; + "down") "$cmd" "$down_opt" 5 ;; + *) exit 1 ;; +esac + +notify-send "backlight $("$cmd" | cut -d '.' -f 1)" -- cgit