feat: remove unused set-ddc-light

This commit is contained in:
AngeD 2023-01-10 09:50:36 +01:00
parent 0ab8ee4110
commit 70f5d2993c

View File

@ -1,13 +0,0 @@
#!/bin/bash
set -e
command -v sudo > /dev/null && exec SUDO='sudo'
command -v doas > /dev/null && exec SUDO='doas'
CUR_LIGHT="$(set-light "$@")"
SCREENS="$($SUDO ddcutil detect | awk '$1 == "Display" {print $2}')"
for i in $SCREENS; do
$SUDO ddcutil -d "$i" setvcp 10 "$CUR_LIGHT"
done