mirror of
https://github.com/LukeSmithxyz/voidrice.git
synced 2025-10-07 07:22:36 +02:00
Merge branch 'patch-1' of https://github.com/ArgusGuardian/voidrice into ArgusGuardian-patch-1
This commit is contained in:
commit
d56ca0c95b
23
.local/bin/statusbar/sb-bghitness
Normal file
23
.local/bin/statusbar/sb-bghitness
Normal file
@ -0,0 +1,23 @@
|
||||
#!/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
|
||||
1)
|
||||
;;
|
||||
3)
|
||||
notify-send "💡 Brightness module" "\- Shows current brightness level ☀️."
|
||||
;;
|
||||
6)
|
||||
setsid -f "$TERMINAL" -e "$EDITOR" "$0"
|
||||
;;
|
||||
esac
|
||||
|
||||
echo "💡 ${brightness_per}%"
|
||||
Loading…
x
Reference in New Issue
Block a user