Last active
May 8, 2018 07:47
-
-
Save orymate/7985afbe6bfde6115caaab94d69f0d20 to your computer and use it in GitHub Desktop.
Brightness control for i3blocks ThinkPad T470P
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[brightness] | |
label=BRI | |
command=/home/maat/.i3/brightness | |
interval=5 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
# FROM https://github.com/nashamri/i3blocks/blob/master/brightness | |
# One of the following: xrandr, xbacklight, kernel | |
METHOD="xbacklight" | |
METHOD="brightnessctl" | |
# Left click | |
if [[ "${BLOCK_BUTTON}" -eq 1 ]]; then | |
brightnessctl s 10%+ | |
# Right click | |
elif [[ "${BLOCK_BUTTON}" -eq 3 ]]; then | |
brightnessctl s 10%- | |
fi >/dev/null 2>&1 | |
URGENT_VALUE=10 | |
if [[ "${METHOD}" = "xrandr" ]]; then | |
device="${BLOCK_INSTANCE:-primary}" | |
xrandrOutput=$(xrandr --verbose) | |
if [[ "${device}" = "primary" ]]; then | |
device=$(echo "${xrandrOutput}" | grep 'primary' | head -n 1 | awk -F ' ' '{print $1}') | |
fi | |
curBrightness=$(echo "${xrandrOutput}" | grep "${device}" -A 5 | grep -i "Brightness" | awk -F ':' '{print $2}') | |
elif [[ "${METHOD}" = "kernel" ]]; then | |
device="${BLOCK_INSTANCE:-intel_backlight}" | |
maxBrightness=$(cat /sys/class/backlight/${device}/max_brightness) | |
curBrightness=$(cat /sys/class/backlight/${device}/brightness) | |
elif [[ "${METHOD}" = "xbacklight" ]]; then | |
curBrightness=$(xbacklight -get) | |
elif [[ "${METHOD}" = "brightnessctl" ]]; then | |
curBrightness=$(brightnessctl -m i|awk -F, '{print $4}') | |
curBrightness=${curBrightness%%%} | |
fi | |
if [[ "${curBrightness}" -le 0 ]]; then | |
brightnessctl s 10% | |
fi | |
if [[ "${METHOD}" = "xrandr" ]]; then | |
percent=$(echo "scale=0;${curBrightness} * 100" | bc -l) | |
elif [[ "${METHOD}" = "kernel" ]]; then | |
percent=$(echo "scale=0;${curBrightness} / ${maxBrightness} * 100" | bc -l) | |
elif [[ "${METHOD}" = "xbacklight" ]]; then | |
percent=$(echo "scale=0;${curBrightness}" | bc -l) | |
elif [[ "${METHOD}" = "brightnessctl" ]]; then | |
percent=${curBrightness} | |
fi | |
percent=${percent%.*} | |
echo "${percent}%" | |
echo "${percent}%" | |
echo "" | |
if [[ "${percent}" -le "${URGENT_VALUE}" ]]; then | |
exit 33 | |
fi |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment