19 lines
235 B
Bash
Executable File
19 lines
235 B
Bash
Executable File
#!/bin/sh
|
|
hostname=`hostname`
|
|
count=200
|
|
if [[ $hostname = 'titan' ]]
|
|
then
|
|
count=50
|
|
fi
|
|
|
|
for i in $(seq $count); do
|
|
case $1 in
|
|
'up')
|
|
brightnessctl s +3
|
|
;;
|
|
'down')
|
|
brightnessctl s 3-
|
|
;;
|
|
esac
|
|
done
|