summaryrefslogtreecommitdiff
path: root/ar/.local/bin/statusbar/sb-bghitness
diff options
context:
space:
mode:
authorTheSiahxyz <164138827+TheSiahxyz@users.noreply.github.com>2025-01-24 20:35:27 +0900
committerTheSiahxyz <164138827+TheSiahxyz@users.noreply.github.com>2025-01-24 20:35:27 +0900
commitc80a54e42b52ce297f0f2f71af23c562832025c7 (patch)
treedcce8bb977a770f473325d48f6f70b21d9818a40 /ar/.local/bin/statusbar/sb-bghitness
init
Diffstat (limited to 'ar/.local/bin/statusbar/sb-bghitness')
-rwxr-xr-xar/.local/bin/statusbar/sb-bghitness19
1 files changed, 19 insertions, 0 deletions
diff --git a/ar/.local/bin/statusbar/sb-bghitness b/ar/.local/bin/statusbar/sb-bghitness
new file mode 100755
index 0000000..0aabfb6
--- /dev/null
+++ b/ar/.local/bin/statusbar/sb-bghitness
@@ -0,0 +1,19 @@
+#!/bin/sh
+
+# current brightness
+curr_brightness=$(cat /sys/class/backlight/*/brightness)
+
+# max_brightness
+max_brightness=$(cat /sys/class/backlight/*/max_brightness)
+
+# brightness percentage
+brightness_per=$((100 * curr_brightness / max_brightness))
+
+case $BLOCK_BUTTON in
+3) notify-send "💡 Brightness module" "\- Shows current brightness level ☀️." ;;
+4) pkexec brillo -A 5 -q ;;
+5) pkexec brillo -U 5 -q ;;
+6) setsid -f "$TERMINAL" -e "$EDITOR" "$0" ;;
+esac
+
+echo "💡${brightness_per}%"