Blob


1 --[[
2 .conkyrc config
3 ]]
5 conky.config = {
6 alignment = 'top_right',
7 background = false,
8 border_width = 1,
9 cpu_avg_samples = 2,
10 default_color = '#61b0e9',
11 default_outline_color = 'white',
12 default_shade_color = 'white',
13 draw_borders = true,
14 draw_graph_borders = true,
15 draw_outline = false,
16 draw_shades = false,
17 use_xft = true,
18 font = 'Noto Mono:Regular:size=9',
19 gap_x = 1366,
20 gap_y = 32,
21 minimum_height = 5,
22 minimum_width = 5,
23 net_avg_samples = 2,
24 no_buffers = true,
25 out_to_console = false,
26 out_to_stderr = false,
27 extra_newline = false,
28 own_window = true,
29 own_window_class = 'Conky',
30 own_window_type = 'desktop',
31 -- own_window_transparent = true,
32 own_window_hints = 'undecorated,sticky,skip_taskbar,skip_pager,below',
33 own_window_argb_visual = true,
34 stippled_borders = 0,
35 update_interval = 1.0,
36 uppercase = false,
37 use_spacer = 'none',
38 show_graph_scale = false,
39 show_graph_range = false
40 }
42 conky.text = [[
43 $nodename - $sysname $kernel on $machine
44 ${hr 2}
45 ${color #063c96}Uptime:$color $uptime
46 ${color #063c96}Frequency:$color $freq_g GHz
47 ${color #063c96}RAM Usage:$color $mem/$memmax - $memperc% ${membar 4}
48 ${color #063c96}Swap Usage:$color $swap/$swapmax - $swapperc% ${swapbar 4}
49 ${color #063c96}CPU Usage:$color $cpu% ${cpubar 4}
50 ${color #063c96}Processes:$color $processes ${color #063c96}Running:$color $running_processes
51 $hr
52 ${color #063c96}Name PID CPU% MEM%
53 ${color #0850c9} ${top name 1} ${top pid 1} ${top cpu 1} ${top mem 1}
54 ${color #0850c9} ${top name 2} ${top pid 2} ${top cpu 2} ${top mem 2}
55 ${color #0850c9} ${top name 3} ${top pid 3} ${top cpu 3} ${top mem 3}
56 ${color #0850c9} ${top name 4} ${top pid 4} ${top cpu 4} ${top mem 4}
57 ${color #0850c9} ${top name 5} ${top pid 5} ${top cpu 5} ${top mem 5}
58 ${color #0850c9} ${top name 6} ${top pid 6} ${top cpu 6} ${top mem 6}
59 ${color #0850c9} ${top name 7} ${top pid 7} ${top cpu 7} ${top mem 7}
60 ${color #0850c9} ${top name 8} ${top pid 8} ${top cpu 8} ${top mem 8}
61 ${color #0850c9} ${top name 9} ${top pid 9} ${top cpu 9} ${top mem 9}
62 ${color #0850c9} ${top name 10} ${top pid 10} ${top cpu 10} ${top mem 10}
63 $hr
64 ${color #063c96}File systems:
65 / $color${fs_used /}/${fs_size /} ${fs_bar 6 /}
66 ${color #063c96}Networking:
67 Up:$color ${upspeed enp4s0} ${color #063c96} - Down: $color ${downspeed enp4s0}
68 ]]