-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmakeboblight.sh
executable file
·193 lines (130 loc) · 3.64 KB
/
makeboblight.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
#!/bin/bash
# Script to generate configuration for Boblight ambient lighting setup.
# TODO: Document this more
# How far into the screen should it look
depth=13
devicename=ambilight
echo -n "How many lights on the Left side? "
read left
echo -n "How many lights on the Top? "
read top
echo -n "How many lights on the Right side? "
read right
echo -n "How many lights on the Bottom? "
read bottom
total=$(expr $left + $top + $right + $bottom)
echo "Total light: $total"
echo
echo "------- Light section starts here ------"
current=1
colorcount=1
if [ $bottom -ne 0 ]; then
bcount=1
brange=$(echo "scale=2; 100 / $bottom" | bc)
bcurrent=50
while [ $bcount -le $(expr $bottom / 2 2>/dev/null) ]; do
btop=$(echo "scale=2; $bcurrent - $brange" | bc)
echo
echo "[light]"
echo "name bottom$bcount"
echo "color red $devicename $colorcount"
((colorcount++))
echo "color green $devicename $colorcount"
((colorcount++))
echo "color blue $devicename $colorcount"
((colorcount++))
echo "hscan $btop $bcurrent"
echo "vscan $(echo "scale=2; 100 - $depth" | bc) 100"
bcurrent=$btop
((bcount++))
((current++))
done
fi
if [ $left -ne 0 ]; then
lcount=1
lrange=$(echo "scale=2; 100 / $left" | bc)
lcurrent=100
while [ $lcount -le $left ]; do
ltop=$(echo "scale=2; $lcurrent - $lrange" | bc)
echo
echo "[light]"
echo "name left$lcount"
echo "color red $devicename $colorcount"
((colorcount++))
echo "color green $devicename $colorcount"
((colorcount++))
echo "color blue $devicename $colorcount"
((colorcount++))
echo "hscan 0 $depth"
echo "vscan $ltop $lcurrent"
lcurrent=$ltop
((lcount++))
((current++))
done
fi
if [ $top -ne 0 ]; then
tcount=1
trange=$(echo "scale=2; 100 / $top" | bc)
tcurrent=0
while [ $tcount -le $top ]; do
ttop=$(echo "scale=2; $tcurrent + $trange" | bc)
echo
echo "[light]"
echo "name top$tcount"
echo "color red $devicename $colorcount"
((colorcount++))
echo "color green $devicename $colorcount"
((colorcount++))
echo "color blue $devicename $colorcount"
((colorcount++))
echo "hscan $tcurrent $ttop"
echo "vscan 0 $depth"
tcurrent=$ttop
((tcount++))
((current++))
done
fi
if [ $right -ne 0 ]; then
rcount=1
rrange=$(echo "scale=2; 100 / $right" | bc)
rcurrent=0
while [ $rcount -le $right ]; do
rtop=$(echo "scale=2; $rcurrent + $rrange" | bc)
echo
echo "[light]"
echo "name right$rcount"
echo "color red $devicename $colorcount"
((colorcount++))
echo "color green $devicename $colorcount"
((colorcount++))
echo "color blue $devicename $colorcount"
((colorcount++))
echo "hscan $(echo "scale=2; 100 - $depth" | bc) 100"
echo "vscan $rcurrent $rtop"
rcurrent=$rtop
((rcount++))
((current++))
done
fi
if [ $bottom -ne 0 ]; then
bcurrent=100
while [ $bcount -le $bottom ]; do
btop=$(echo "scale=2; $bcurrent - $brange" | bc)
echo
echo "[light]"
echo "name bottom$bcount"
echo "color red $devicename $colorcount"
((colorcount++))
echo "color green $devicename $colorcount"
((colorcount++))
echo "color blue $devicename $colorcount"
((colorcount++))
echo "hscan $btop $bcurrent"
echo "vscan $(echo "scale=2; 100 - $depth" | bc) 100"
bcurrent=$btop
((bcount++))
((current++))
done
fi
echo
echo "------- Light section ends here ------"