-
Notifications
You must be signed in to change notification settings - Fork 1
/
conky.conf
79 lines (69 loc) · 2.66 KB
/
conky.conf
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
--[[
Spydr06`s conky configuration
https://gihtub.com/spydr06/dotfiles.git
]]
--
-- Conky Configuration
--
conky.config = {
-- window position and size
alignment = 'bottom_right',
gap_x = 32,
gap_y = 32,
minimum_height = 220,
minimum_width = 400,
maximum_width = 400,
background = false,
border_width = 1,
own_window = true,
own_window_class = 'Conky',
own_window_type = 'desktop',
-- font
font = 'Cascadia Code:size=10',
font1 = 'Cascadia Code:bold:size=11',
-- colors
color1 = '#d0dadf', -- accent
color2 = '#c8c8c8', -- accent dimmed
own_window_transparent = false, -- transparency
own_window_argb_visual = true, -- transparency
own_window_argb_value = 200, -- transparency [0 -255]
own_window_colour = '#000000', -- bg color [comment to full transparency]
default_color = 'white', -- default colors
default_outline_color = 'white', -- default colors
default_shade_color = 'white', -- default colors
double_buffer = true, -- removes flickering
draw_borders = false, -- borders (window)
draw_graph_borders = true, -- borders (graphs)
draw_outline = false, -- border (text)
draw_shades = false, -- shades
extra_newline = false, -- extra newline at the end when writing to stdout
-- other
update_interval = 1.0,
cpu_avg_samples = 4,
net_avg_samples = 4,
no_buffers = true,
out_to_console = false,
out_to_ncurses = false,
out_to_stderr = false,
out_to_x = true,
show_graph_range = false,
show_graph_scale = false,
stippled_borders = 0,
uppercase = false,
use_spacer = 'none',
use_xft = true,
}
--
-- Conky Layout
--
conky.text = [[
${voffset 0}
${goto 24}${color1}${font1}* OS ${voffset 8}${font}
${goto 24}${color1}OS: ${color2}$sysname $nodename $machine
${goto 24}${color1}Kernel: ${color2}$kernel
${goto 24}${color1}Uptime: ${color2}$uptime
${goto 24}${color1}${font1}* File system ${voffset 8}${font}
${goto 24}${color1}root: ${color2}${fs_used /}/${fs_size /} ${alignr} ${fs_used_perc /}% ${color1}${fs_bar 6, 124 /}
${goto 24}${color1}home: ${color2}${fs_used /home}/${fs_size /home} ${alignr} ${fs_used_perc /home}% ${color1}${fs_bar 6, 124 /home}
${goto 24}${color1}${font1}* Processes: ${font}${color2}$processes${alignr}${color1}Running: ${color2}$running_processes ${color1}Threads: ${color2}$running_threads
]]