2018-01-21 00:45:36 -06:00
|
|
|
-- vim: ts=4 sw=4 noet ai cindent syntax=lua
|
|
|
|
|
2018-01-21 01:19:55 -06:00
|
|
|
conky.config = {
|
|
|
|
own_window = true,
|
2018-01-21 19:41:52 -06:00
|
|
|
own_window_title = 'Conky',
|
2018-01-21 01:19:55 -06:00
|
|
|
own_window_class = 'Conky',
|
|
|
|
own_window_type = 'desktop',
|
2018-06-21 12:44:42 -05:00
|
|
|
own_window_colour = '000000',
|
|
|
|
own_window_transparent = true,
|
|
|
|
own_window_argb_visual = true,
|
|
|
|
own_window_argb_value = 0,
|
2018-01-21 00:45:36 -06:00
|
|
|
|
2018-01-21 01:19:55 -06:00
|
|
|
double_buffer = true,
|
|
|
|
cpu_avg_samples = 2,
|
|
|
|
net_avg_samples = 2,
|
|
|
|
no_buffers = true,
|
|
|
|
update_interval = 1,
|
2018-01-21 00:45:36 -06:00
|
|
|
|
|
|
|
use_xft = true,
|
2018-06-21 12:44:42 -05:00
|
|
|
font = 'Roboto:style=Light:size=10',
|
2018-05-17 16:38:00 -05:00
|
|
|
default_color = '#ebdbb2',
|
2018-05-18 15:08:55 -05:00
|
|
|
color1 = '282828', -- Background
|
|
|
|
color2 = 'ebdbb2', -- Foreground
|
|
|
|
color3 = '3c3836', -- Background-alt
|
|
|
|
color4 = 'fb4934', -- Red (Hot, generic)
|
|
|
|
color6 = '8ec07c', -- Cyan (Network)
|
|
|
|
color7 = 'b8bb26', -- Green (Disk)
|
|
|
|
color8 = '83a598', -- Blue (CPU)
|
|
|
|
color9 = 'd3869b', -- Magenta (Memory)
|
2018-01-21 00:45:36 -06:00
|
|
|
|
|
|
|
alignment = 'bottom_right',
|
2018-01-21 19:56:46 -06:00
|
|
|
xinerama_head = 2,
|
2018-01-21 01:19:55 -06:00
|
|
|
minimum_height = 100,
|
2018-01-21 00:47:03 -06:00
|
|
|
minimum_width = 300,
|
2018-01-21 00:45:36 -06:00
|
|
|
border_width = 6,
|
2018-05-18 12:59:15 -05:00
|
|
|
gap_x = 20,
|
|
|
|
gap_y = 58,
|
2018-01-21 00:45:36 -06:00
|
|
|
|
|
|
|
draw_outline = false,
|
2018-05-18 15:08:55 -05:00
|
|
|
draw_graph_borders = false,
|
2018-01-21 01:19:55 -06:00
|
|
|
draw_shades = false
|
2018-01-21 00:45:36 -06:00
|
|
|
}
|
|
|
|
|
|
|
|
conky.text = [[
|
2018-06-21 13:14:51 -05:00
|
|
|
${font Roboto:style=Medium:size=30}$alignr$nodename$font
|
|
|
|
${font Roboto:style=Light:size=17}$alignr${time %I:%M %p}
|
|
|
|
${font Roboto:style=Light:size=12}$alignr${time %A, %B %d, %Y}$font
|
2018-01-21 00:45:36 -06:00
|
|
|
${color3}$hr$color
|
2018-06-21 13:14:51 -05:00
|
|
|
${font Roboto:style=Medium:size=10}CPU:$font $freq_g GHz$alignr$cpu%
|
|
|
|
${color8}${cpugraph cpu1 40,150} ${cpugraph cpu2 40,150}
|
|
|
|
${cpugraph cpu3 40,150} ${cpugraph cpu4 40,150}$color
|
2018-01-21 00:45:36 -06:00
|
|
|
${color3}$hr$color
|
2018-06-21 13:14:51 -05:00
|
|
|
${font Roboto:style=Medium:size=10}Memory:$font $mem out of $memmax$alignr$memperc%
|
2018-01-21 00:45:36 -06:00
|
|
|
${color9}${memgraph 40}$color
|
|
|
|
${color3}$hr$color
|
2018-06-21 13:14:51 -05:00
|
|
|
${font Roboto:style=Medium:size=10}Disk:$font$alignr${diskio /dev/sda}
|
|
|
|
${color7}${diskiograph /dev/sda 40}$color
|
2018-01-21 16:40:52 -06:00
|
|
|
${color3}$hr$color${if_up wlp1s0}
|
2018-06-21 13:14:51 -05:00
|
|
|
${font Roboto:style=Medium:size=10}WLAN:$font$alignr${addr wlp1s0} on $wireless_essid
|
2018-01-21 16:40:52 -06:00
|
|
|
${color6}${downspeedgraph wlp1s0 20}$color$endif${if_up wlp5s0}
|
2018-06-21 13:14:51 -05:00
|
|
|
${font Roboto:style=Medium:size=10}WLAN:$font$alignr${addr wlp5s0} on $wireless_essid
|
2018-01-21 16:40:52 -06:00
|
|
|
${color6}${downspeedgraph wlp5s0 20}$color$endif${if_up enp0s31f6}
|
2018-06-21 13:14:51 -05:00
|
|
|
${font Roboto:style=Medium:size=10}Ethernet:$font$alignr${addr enp0s31f6}
|
2018-01-21 01:00:49 -06:00
|
|
|
${color6}${downspeedgraph enp0s31f6 20}$color$endif${if_up enp0s20f0u2}
|
2018-06-21 13:14:51 -05:00
|
|
|
${font Roboto:style=Medium:size=10}USB Tether:$font$alignr${addr enp0s20f0u2}
|
2018-01-21 01:00:49 -06:00
|
|
|
${color6}${downspeedgraph enp0s20f0u2 20}$color$endif
|
2018-01-21 00:45:36 -06:00
|
|
|
${color3}$hr$color
|
2018-06-21 12:44:42 -05:00
|
|
|
${font Roboto:style=Medium:size=10}Statistics:$font
|
|
|
|
Operating System: $sysname $kernel
|
|
|
|
Battery: $battery_percent% charged, $battery_time remaining
|
|
|
|
Uptime: $uptime
|
2018-06-22 20:21:26 -05:00
|
|
|
Processes: $processes total, $running_processes running
|
2018-01-21 00:45:36 -06:00
|
|
|
]]
|