]> git.friedersdorff.com Git - max/saltfiles.git/blob - states/conky/files/conkyrc
Integrate pomodoro timer into conkyrc
[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_match "${exec cat ~/.local/share/pomodoro}"!="done"}
36     {"full_text": "Pomodoro: ${exec cat ~/.local/share/pomodoro}", "color": "\#ea0501"},
37   ${endif}
38 {% if grains['host'] == 'barium' %}
39   {"full_text": "Last Tea: ${execi 120 tail -n 1 ~/.local/share/teatimer.log}s", "color": "\#ffffff"},
40 {% endif %}
41   {"full_text": "Home ${fs_free /home}", "color": "\#ffffff"},
42   {"full_text": "Root ${fs_free /root}", "color": "\#ffffff"},
43   {"full_text": "Disk r:${diskio_read} w:${diskio_write}", "color": "\#ffffff"},
44   {"full_text": "CPU ${cpu cpu0}%", "color": "\#ffffff"},
45   {% for dev in ifdev %}
46   ${if_match "${addr {{ dev }}}"!="No Address"}
47   {
48       "full_text": 
49                 "{{ dev }} d:${downspeed {{ dev }}} u:${upspeed {{ dev }}} ${addr {{ dev }}}", 
50       "color":
51         ${if_match "${addr {{ dev }}}"=="No Address"}
52           "\#ff0000"
53         ${else}
54           "\#00ff00"
55         ${endif}
56   },
57   ${endif}
58   {% endfor %}
59   ${if_match "${addr tun0}"!="No Address"}
60         {"full_text": "VPN", "color": "\#00ff00"},
61   ${endif}
62   {
63         "full_text": "RAM ${memperc}%", 
64         "color": 
65           ${if_match ${memperc}<90}
66             "\#ffffff"
67           ${else}
68                 "\#ff0000"
69           ${endif} 
70   },
71 {% if grains['host'] == 'platinum' or grains['host'] == 'rhenium' or grains['host'] == 'barium' %}
72         {
73           "full_text": "BAT ${battery_short} ${battery_time}", 
74           "color": 
75           ${if_match ${battery_percent}<20}
76             "\#ff0000"
77           ${else}
78                 "\#00ff00"
79           ${endif}
80         },
81 {% endif %}
82   {"full_text": "${time %Y-%m-%d %H:%M}", "color": "\#ffffff"}
83 ],
84 ]];
85