-
Notifications
You must be signed in to change notification settings - Fork 0
/
.conkyrc
32 lines (29 loc) · 1023 Bytes
/
.conkyrc
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
conky.config = {
background = false,
cpu_avg_samples = 2,
no_buffers = true,
out_to_console = true,
out_to_x = false,
own_window = false,
update_interval = 5,
short_units = true,
total_run_times = 0
};
conky.text = [[
[
{"full_text": "cpu: ${cpu cpu0}% ", "color":"\#cf6a4c"},
{"full_text": " | ", "color":"\#555555"},
{"full_text": "ram: $mem","color":"\#cda869"},
{"full_text": " | ", "color":"\#555555"},
{"full_text": "home: ${fs_free /home}","color":"\#89b859"},
{"full_text": " | ", "color":"\#555555"},
{"full_text": "wi-fi: ${addr wlan0}","color":"\#00aaaa"},
{"full_text": " | ", "color":"\#555555"},
{"full_text": "${acpitemp} °C", "color":"\#9b703f"},
{"full_text": " | ", "color":"\#555555"},
{"full_text": "battery: ${battery_short}", "color":"\#838184"},
{"full_text": " | ", "color":"\#555555"},
{"full_text": "${time %A %Y-%m-%d}", "color":"\#cccccc"},
{"full_text": "${time %H:%M}", "color":"\#cccccc"}
],
]];