-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.conkyrc
128 lines (115 loc) · 4.2 KB
/
.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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
-- vim: ts=4 sw=4 noet ai cindent syntax=lua
--[[
Conky, a system monitor, based on torsmo
Any original torsmo code is licensed under the BSD license
All code written since the fork of torsmo is licensed under the GPL
Please see COPYING for details
Copyright (c) 2004, Hannu Saransaari and Lauri Hakkarainen
Copyright (c) 2005-2012 Brenden Matthews, Philip Kovacs, et. al. (see AUTHORS)
All rights reserved.
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program. If not, see <http://www.gnu.org/licenses/>.
]]
--[[# Purple 9372d2]]
conky.config = {
alignment = 'top_left',
background = false,
border_width = 0,
cpu_avg_samples = 2,
default_color = '1b1d24',
default_outline_color = '1b1d24',
default_shade_color = 'black',
draw_borders = false,
draw_graph_borders = true,
draw_outline = false,
draw_shades = false,
color1 = 'aac692',
color2 = 'ffffff',
color3 = 'F80E27',
color4 = '20dc3e',
use_xft = true,
xftalpha = 0.8,
total_run_times = 0,
font = 'Inconsolata for Powerline:size=12:style=Regular',
gap_x = 12,
gap_y = 70,
minimum_height = 5,
minimum_width = 5,
net_avg_samples = 2,
no_buffers = true,
double_buffer = true,
out_to_console = false,
out_to_stderr = false,
extra_newline = false,
own_window = true,
own_window_class = 'Conky',
own_window_type = 'override',
own_window_argb_visual = true,
own_window_argb_value = 0,
stippled_borders = 0,
update_interval = 1.0,
uppercase = false,
override_utf8_locale = false,
use_spacer = 'none',
show_graph_scale = false,
show_graph_range = false
}
conky.text = [[
${color1}SYSTEM ${hr 1}${color}
${voffset 5}${font OpenLogos:size=36}B${font}
${voffset -45}$alignr${texeci 3600 lsb_release -sir}
${voffset 5}$alignr${texeci 3600 uname -r}
${voffset 3}Uptime: $alignr$uptime
Packages: $alignr${texeci 3600 pacman -Qq --color never | wc -l}
Throtle: ${alignr}${freq} MHz
Processes: ${alignr}$processes ($running_processes running)
Load: ${alignr}$loadavg
${color1}HARDWARE ${hr 1}${color}
CPU1 ${alignr}${cpu cpu1}%
${color2}${cpubar cpu1}${color}
CPU2 ${alignr}${cpu cpu2}%
${color2}${cpubar cpu2}${color}
CPU3 ${alignr}${cpu cpu3}%
${color2}${cpubar cpu3}${color}
CPU4 ${alignr}${cpu cpu4}%
${color2}${cpubar cpu4}${color}
Ram ${alignr}$mem / $memmax ($memperc%)
${color2}${membar 8}${color}
${color1}Top CPU${hr 1}${color}
${top name 1}$alignr${top cpu 1}${top mem 1}
${top name 2}$alignr${top cpu 2}${top mem 2}
${top name 3}$alignr${top cpu 3}${top mem 3}
${color1}Top MEM${hr 1}${color}
${top_mem name 1}$alignr${top_mem cpu 1}${top_mem mem 1}
${top_mem name 2}$alignr${top_mem cpu 2}${top_mem mem 2}
${top_mem name 3}$alignr${top_mem cpu 3}${top_mem mem 3}
${color1}FILESYSTEM ${hr 1}${color}
Read:$alignr$diskio_read
${color2}${diskiograph_read 25,240 797979 FFFFFF}${color}
Write:$alignr$diskio_write
${color2}${diskiograph_write 25,240 797979 FFFFFF}${color}
#Root: ${alignr}${fs_used /} / ${fs_size /}
#${fs_bar 4 /}
Home: ${alignr}${fs_used /home} / ${fs_size /home}
${color2}${fs_bar 4 /home}${color}
SWAP${alignr}$swap / $swapmax
${color2}${swapbar}${color}
#${color1}NETWORK ${hr 1}${color}
#VPN Status${alignr}${execpi 10 perl ~/.vpn.pl stat}
#VPN Server${alignr}${execpi 10 perl ~/.vpn.pl con}
${color1}CRYPTO ${hr 1}${color}
Bitcoin${alignr}${texeci 300 sh /home/pheonix/.config/lemonbar/crypto BTC bitcoin}
Zcash${alignr}${texeci 300 sh /home/pheonix/.config/lemonbar/crypto ZEC zcash}
${color1}NETWORK ${hr 1}${color}
Down ${downspeed enp9s0} ${alignr}Up ${upspeed enp9s0}
${color2}${downspeedgraph enp9s0 25,107 797979 FFFFFF} ${alignr}${upspeedgraph enp9s0 25,107 797979 FFFFFF}${color}
Total ${totaldown enp9s0} ${alignr}Total ${totalup enp9s0}
]]