fix: .local/bin -> bin to avoid user pkg managers

This commit is contained in:
AngeD 2022-11-26 16:58:15 +01:00
parent 87549c183f
commit 8f364ce723
8 changed files with 1 additions and 1 deletions

10
bin/set-ddc-light Executable file
View file

@ -0,0 +1,10 @@
#!/bin/bash
set -e
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