diff options
author | Camil Staps | 2023-02-20 14:21:04 +0100 |
---|---|---|
committer | Camil Staps | 2023-02-20 14:21:04 +0100 |
commit | 6d87114290f5076b62f65037c719d1f9c46cbb2c (patch) | |
tree | 24a96aa4186a2e33d4a11f85640adb83d24231c9 /yoga/bin/toggle-dp-brightness | |
parent | Make dmenu case insensitive for running programs (diff) |
Add i3 shortcuts for enabling/disabling displayport as well as turning its brightness on/off
Diffstat (limited to 'yoga/bin/toggle-dp-brightness')
-rwxr-xr-x | yoga/bin/toggle-dp-brightness | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/yoga/bin/toggle-dp-brightness b/yoga/bin/toggle-dp-brightness new file mode 100755 index 0000000..e92eaff --- /dev/null +++ b/yoga/bin/toggle-dp-brightness @@ -0,0 +1,11 @@ +#!/bin/bash +set -e +EXTERNAL="$(xrandr | grep 'DisplayPort.* connected' | cut -d' ' -f1)" +[ -z "$EXTERNAL" ] && exit 1 + +BRIGHTNESS="$(xrandr --verbose | grep -A5 "$EXTERNAL" | grep Brightness | cut -d':' -f2)" +if [ "$BRIGHTNESS" == " 1.0" ]; then + xrandr --output $EXTERNAL --brightness 0 +else + xrandr --output $EXTERNAL --brightness 1 +fi |