-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
54 lines (54 loc) · 2.57 KB
/
index.html
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
<html>
<head>
<head/>
<style>
html {
background-color: #000;
color: #fff;
}
.imagegrid {
display: grid;
grid-template-columns: repeat(2, 1fr);
grid-template-rows: repeat(4, 1fr);
grid-column-gap: 24px;
grid-row-gap: 24px;
justify-items: center;
}
</style>
<body>
<h1>nz3xt</h1>
<h2>Python script for creating gauges and patterns suitable for nzxt z3 pumheads</h2>
<pre>
Usage:
nz3xt single <primary_color> <secondary_color> <text_color> <name> <value> <unit> <filename>
nz3xt double <primary_color> <secondary_color> <primary_name> <primary_value> <primary_unit> <secondary_name> <secondary_value> <secondary_unit> <filename>
nz3xt taichi <primary_color> <secondary_color> <duration> <filename>
nz3xt sweep <primary_color> <duration> <filename>
nz3xt rainbow <duration> <filename>
nz3xt spectrum <duration> <filename>
nz3xt colorwheel <primary_color> <secondary_color> <quaternary_color> <quinary_color> <duration> <filename>
</pre>
<h2>Examples</h2>
<div class="imagegrid"style="padding:10px">
<img src="./examples/single01.gif" alt="1" width = 320px height = 320px >
<img src="./examples/single02.gif" alt="2" width = 320px height = 320px >
<img src="./examples/double01.gif" alt="3" width = 320px height = 320px >
<img src="./examples/double02.gif" alt="4" width = 320px height = 320px >
<img src="./examples/sweep01.gif" alt="5" width = 320px height = 320px >
<img src="./examples/taichi01.gif" alt="6" width = 320px height = 320px >
<img src="./examples/colorwheel01.gif" alt="7" width = 320px height = 320px >
<img src="./examples/rainbow01.gif" alt="8" width = 320px height = 320px >
<img src="./examples/spectrum01.gif" alt="9" width = 320px height = 320px >
</div>
<pre>
./nz3xt single "#5200ac" "#7d0081" "#ffffff" CPU 39 ° examples/single01.gif
./nz3xt single "#5200ac" "#7d0081" "#00aae4" CPU 44 % examples/single02.gif
./nz3xt double "#5200ac" "#7d0081" CPU 25 ° GPU 28 ° examples/double01.gif
./nz3xt double "#00aae4" "#ffa500" TEMP 23 ° LOAD 87 % examples/double02.gif
./nz3xt taichi "#00aae4" "#ffa500" 0.05 examples/taichi01.gif
./nz3xt sweep "#00aae4" 0.05 examples/sweep01.gif
./nz3xt rainbow 0.05 examples/rainbow01.gif
./nz3xt spectrum 0.05 examples/spectrum01.gif
./nz3xt colorwheel "#00aae4" "#ffa500" "#5200ac" "#7d0081" 0.05 examples/colorwheel01.gif
</pre>
</html>