guest@dotshare [~/groups/info/conky] $ ls Black-Slack/ | cat

Black Slack (scrot)

marav Dec 25, 2020 (info/conky)

conky(raw, dl)

SCROT

 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
# conky configuration
##############################################
# Settings
##############################################
background no
use_xft yes
xftfont Liberation Sans:size=11
xftalpha 1
update_interval 1.0
total_run_times 0
own_window yes
own_window_transparent yes
own_window_type desktop
own_window_class Conky
own_window_hints undecorated,below,sticky,skip_taskbar,skip_pager

own_window_argb_value 0
own_window_argb_visual yes
own_window_colour 000000

double_buffer yes
minimum_size 200 600
maximum_width 548
draw_shades no
draw_outline no
draw_borders no
draw_graph_borders no
border_inner_margin 0
border_outer_margin 0

out_to_x yes

default_color fff
default_shade_color 000000
default_outline_color FFFFFF

alignment top_right
gap_x 22
gap_y 66

no_buffers yes
uppercase no
cpu_avg_samples 2
override_utf8_locale yes

##############################################
#  Output
##############################################

color1 FFFFFF
color2 5ECEE0
color3 FBCA3F

TEXT
###
${image ~/.conky/AAA/slack6.jpg}${font GEinspira:normal:size=8}


${font GEinspira:normal:size=9}${color1}${exec cat /etc/os-release | awk -F= '/VERSION_CODENAME/ {print $2}'| sed 's/\(.\{1\}\)/\1 /g'} ${hr 1}${font GEinspira:size=2}
${font GEinspira:bold:size=10}${color3}${alignr}${kernel}
#
${alignc}${font GEinspira:normal:size=44}${color2}${time %H}${font GEinspira:normal:size=28}${color1} : ${time %M}${font GEinspira:normal:size=10}  ${time %S}

${alignc -4}${font GEinspira:normal:size=14}${color1}${time %a } ${font GEinspira:normal:size=28}${color2}${time %d}${font GEinspira:normal:size=10}${color1}  ${time  %B}
${alignc}${font GEinspira:normal:size=13}${color1}${time %Y}${font GEinspira:size=10}

${font GEinspira:bold:size=10}${color3}CPU ${font GEinspira:normal:size=9}${color fff} [ ${execi 10 cat /sys/devices/system/cpu/cpu0/cpufreq/scaling_governor} ]${color1} ${hr 1}
${font GEinspira:normal:size=10}core 0 / 1${alignr}${color2}${execi 5 sensors | awk '/Core 0/ {print $3}' | cut -d"." -f1 | sed 's/+//'} / ${execi 5 sensors | awk '/Core 1/ {print $3}' | cut -d"." -f1 | sed 's/+//'}°C${color}
${cpugraph 0 15,54 555555 AAAAAA -l} ${cpugraph 1 15,54 555555 AAAAAA -l} ${cpugraph 2 15,54 555555 AAAAAA -l} ${cpugraph 3 15,54 555555 AAAAAA -l}

${font GEinspira:bold::size=10}${color3}MEMORY ${color1}${hr 1}
${font GEinspira:normal:size=10}ram ${alignr}${color2}${mem} / ${memmax}
${font GEinspira:normal:size=10}${memgraph 15,226 555555 AAAAAA -l}
${color1}${font GEinspira:normal:size=10}zram ${alignr}${color2}${swap}/ ${swapmax}

${font GEinspira:bold:size=10}${color3}DISK ${color1}${hr 1}
${font GEinspira:normal:size=10}sda1 ${alignr}${color2}${fs_used /} / ${fs_size /}${font GEinspira:size=6}
${diskiograph_read /dev/sda1 15,112 555555 AAAAAA -l} ${diskiograph_write /dev/sda1 15,112 555555 AAAAAA -l}

CLICK TO VIEW

x

lua_conkyrc(raw, dl)

 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
conky.config = {
-- conky configuration
--#############################################
-- Settings
--#############################################
	background = false,
	use_xft = true,
	font = 'Liberation Sans:size=11',
	xftalpha = 1,
	update_interval = 1.0,
	total_run_times = 0,
	own_window = true,
	own_window_transparent = true,
	own_window_type = 'desktop',
	own_window_class = 'Conky',
	own_window_hints = 'undecorated,below,sticky,skip_taskbar,skip_pager',

	own_window_argb_value = 0,
	own_window_argb_visual = true,
	own_window_colour = '#000000',

	double_buffer = true,
	minimum_width = 200, minimum_height = 600,
	maximum_width = 548,
	draw_shades = false,
	draw_outline = false,
	draw_borders = false,
	draw_graph_borders = false,
	border_inner_margin = 0,
	border_outer_margin = 0,

	out_to_x = true,

	default_color = '#fff',
	default_shade_color = '#000000',
	default_outline_color = '#FFFFFF',

	alignment = 'top_right',
	gap_x = 22,
	gap_y = 66,

	no_buffers = true,
	uppercase = false,
	cpu_avg_samples = 2,
	override_utf8_locale = true,

--#############################################
--  Output
--#############################################

	color1 = '#FFFFFF',
	color2 = '#5ECEE0',
	color3 = '#FBCA3F',

};

conky.text = [[
###
${image ~/.conky/AAA/slack6.jpg}${font GEinspira:normal:size=8}



${font GEinspira:normal:size=9}${color1}${exec cat /etc/os-release | awk -F= '/VERSION_CODENAME/ {print $2}'| sed 's/\(.\{1\}\)/\1 /g'} ${hr 1}${font GEinspira:size=2}
${font GEinspira:bold:size=10}${color3}${alignr}${kernel}
#
${alignc}${font GEinspira:normal:size=44}${color2}${time %H}${font GEinspira:normal:size=28}${color1} : ${time %M}${font GEinspira:normal:size=10}  ${time %S}

${alignc -4}${font GEinspira:normal:size=14}${color1}${time %a } ${font GEinspira:normal:size=28}${color2}${time %d}${font GEinspira:normal:size=10}${color1}  ${time  %B}
${alignc}${font GEinspira:normal:size=13}${color1}${time %Y}${font GEinspira:size=10}

${font GEinspira:bold:size=10}${color3}CPU ${font GEinspira:normal:size=9}${color fff} [ ${execi 10 cat /sys/devices/system/cpu/cpu0/cpufreq/scaling_governor} ]${color1} ${hr 1}
${font GEinspira:normal:size=10}core 0 / 1${alignr}${color2}${execi 5 sensors | awk '/Core 0/ {print $3}' | cut -d"." -f1 | sed 's/+//'} / ${execi 5 sensors | awk '/Core 1/ {print $3}' | cut -d"." -f1 | sed 's/+//'}°C${color}
${cpugraph 0 15,54 555555 AAAAAA -l} ${cpugraph 1 15,54 555555 AAAAAA -l} ${cpugraph 2 15,54 555555 AAAAAA -l} ${cpugraph 3 15,54 555555 AAAAAA -l}

${font GEinspira:bold::size=10}${color3}MEMORY ${color1}${hr 1}
${font GEinspira:normal:size=10}ram ${alignr}${color2}${mem} / ${memmax}
${font GEinspira:normal:size=10}${memgraph 15,226 555555 AAAAAA -l}
${color1}${font GEinspira:normal:size=10}zram ${alignr}${color2}${swap}/ ${swapmax}

${font GEinspira:bold:size=10}${color3}DISK ${color1}${hr 1}
${font GEinspira:normal:size=10}sda1 ${alignr}${color2}${fs_used /} / ${fs_size /}${font GEinspira:size=6}
${diskiograph_read /dev/sda1 15,112 555555 AAAAAA -l} ${diskiograph_write /dev/sda1 15,112 555555 AAAAAA -l}
]];
 

x

Notes

My ~/.conky/slack/slack_conky

Comments

marav said about 3 years ago

My conly config files

Old one and LUA config file

edited about 3 years ago