feat: full sway config, removed awesome config

This commit is contained in:
AngeD 2022-05-10 11:41:59 +02:00
parent 11bbdb42eb
commit fe1959f01a
31 changed files with 641 additions and 1350 deletions

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

@ -0,0 +1,10 @@
#!/usr/bin/bash
set -e
CUR_LIGHT="$(set-light "$@")"
SCREENS="$(ddcutil detect | awk '$1 == "Display" {print $2}')"
for i in $SCREENS; do
ddcutil -d "$i" setvcp 10 "$CUR_LIGHT"
done