]> git.friedersdorff.com Git - max/saltfiles.git/blob - states/conky/files/conkyrc
83c03a9969fb91d99d172b822d04e63d89093ee7
[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' %}
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_running mutt} 
36     {"full_text": "${new_mails mail_aber/Inbox} new mails", "color": "\#ffa500"},
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   {
43       "full_text": 
44                 "d:${downspeed {{ ifdev }}} u:${upspeed {{ ifdev }}} ${addr {{ ifdev }}}", 
45       "color":
46         ${if_match "${addr {{ ifdev }}}"=="No Address"}
47           "\#ff0000"
48         ${else}
49           "\#00ff00"
50         ${endif}
51   },
52   ${if_match "${addr tun0}"!="No Address"}
53         {"full_text": "VPN", "color": "\#00ff00"},
54   ${endif}
55   {
56         "full_text": "RAM ${memperc}%", 
57         "color": 
58           ${if_match ${memperc}<90}
59             "\#ffffff"
60           ${else}
61                 "\#ff0000"
62           ${endif} 
63   },
64 {% if grains['host'] == 'platinum' or grains['host'] == 'rhenium' or grains['host'] == 'barium' %}
65         {
66           "full_text": "BAT ${battery_short} ${battery_time}", 
67           "color": 
68           ${if_match ${battery_percent}<20}
69             "\#ff0000"
70           ${else}
71                 "\#00ff00"
72           ${endif}
73         },
74 {% endif %}
75   {"full_text": "${time}", "color": "\#ffffff"}
76 ],
77 ]];
78