]> git.friedersdorff.com Git - max/saltfiles.git/blob - states/conky/files/conkyrc
Display teatimer in conky
[max/saltfiles.git] / states / conky / files / conkyrc
1 -- vim: ts=4 sw=4 noet ai cindent syntax=lua
2
3 {% if grains['host'] == 'magnesium' %}
4         {% set ifdev = ['br0'] %}
5 {% elif grains['host'] == 'platinum' %}
6         {% set ifdev = ['wlp2s0'] %}
7 {% elif grains['host'] == 'barium' %}
8         {% set ifdev = ['enp3s0f1', 'wlp4s0'] %}
9 {% elif grains['host'] == 'dubnium' %}
10         {% set ifdev = ['enp4s0'] %}
11 {% elif grains['host'] == 'rhenium' %}
12         {% set ifdev = ['wlp2s0'] %}
13 {% else %}
14         {% set ifdev = ['eth0'] %}
15 {% endif %}
16
17 conky.config = {
18         out_to_x = false,
19         own_window = false,
20         out_to_console = true,
21         short_units = true,
22         update_interval = 0.5,
23         background = false,
24         max_text_width = 0,
25         total_run_times = 0,
26         short_units = true,
27         if_up_strictness = 'address',
28         use_spacer = 'left',
29
30         cpu_avg_samples = 2,
31 };
32
33 conky.text = [[
34 [
35 {% if grains['host'] == 'barium' %}
36   {"full_text": "Last Tea: ${execi 120 tail -n 1 ~/.local/share/teatimer.log}s", "color": "\#ffffff"},
37 {% endif %}
38   {"full_text": "Home ${fs_free /home} Free", "color": "\#ffffff"},
39   {"full_text": "Root ${fs_free /root} Free", "color": "\#ffffff"},
40   {"full_text": "Disk r:${diskio_read} w:${diskio_write}", "color": "\#ffffff"},
41   {"full_text": "CPU ${cpu cpu0}%", "color": "\#ffffff"},
42   {% for dev in ifdev %}
43   {
44       "full_text": 
45                 "d:${downspeed {{ dev }}} u:${upspeed {{ dev }}} ${addr {{ dev }}}", 
46       "color":
47         ${if_match "${addr {{ dev }}}"=="No Address"}
48           "\#ff0000"
49         ${else}
50           "\#00ff00"
51         ${endif}
52   },
53   {% endfor %}
54   ${if_match "${addr tun0}"!="No Address"}
55         {"full_text": "VPN", "color": "\#00ff00"},
56   ${endif}
57   {
58         "full_text": "RAM ${memperc}%", 
59         "color": 
60           ${if_match ${memperc}<90}
61             "\#ffffff"
62           ${else}
63                 "\#ff0000"
64           ${endif} 
65   },
66 {% if grains['host'] == 'platinum' or grains['host'] == 'rhenium' or grains['host'] == 'barium' %}
67         {
68           "full_text": "BAT ${battery_short} ${battery_time}", 
69           "color": 
70           ${if_match ${battery_percent}<20}
71             "\#ff0000"
72           ${else}
73                 "\#00ff00"
74           ${endif}
75         },
76 {% endif %}
77   {"full_text": "${time}", "color": "\#ffffff"}
78 ],
79 ]];
80