Compare commits

..

1 Commits

View File

@ -1,23 +1,13 @@
#!/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))
# show the current brightness level.
case $BLOCK_BUTTON in
1)
;;
3)
notify-send "💡 Brightness module" "\- Shows current brightness level ☀️."
;;
6)
setsid -f "$TERMINAL" -e "$EDITOR" "$0"
;;
esac
1) setsid -w -f "$TERMINAL" -e brightnessctl; pkill -RTMIN+20 "${STATUSBAR:-dwmblocks}" ;;
3) notify-send "💡 Brightness module" "\- Shows brightness level ☀️." ;;
6) setsid -f "$TERMINAL" -e "$EDITOR" "$0" ;;
esact
echo "💡 ${brightness_per}%"
brightness=$(brightnessctl -m | grep -m 1 "backlight" | cut -d "," -f 4)
echo "💡 $brightness"