[i3] Update themes and backlight

This commit is contained in:
2022-01-04 12:20:22 -05:00
parent b97a299d8c
commit add53a1901
4 changed files with 32 additions and 22 deletions

12
bin/.bin/fade Executable file
View File

@ -0,0 +1,12 @@
#!/bin/sh
count=200
for i in $(seq $count); do
case $1 in
'up')
brightnessctl s +4
;;
'down')
brightnessctl s 4-
;;
esac
done