如何在 CLI conky 显示屏中显示 ANSI 颜色?

如何在 CLI conky 显示屏中显示 ANSI 颜色?

理想情况下,如果可能的话,我可以使用类似colortailor 的东西multitailconky配置为传递颜色。如果没有,那么我需要一种方法来以其他方式做到这一点。为粗俗道歉。这是一项正在进行的工作,这里可能有一些不需要的东西。

# **********************************************************************
#
# **********************************************************************


text_buffer_size 512

background yes
double_buffer yes

alignment bottom_left

border_width 1
cpu_avg_samples 2
#default_color white
#default_outline_color white
#default_shade_color white
draw_borders no
#draw_graph_borders yes
draw_outline no
draw_shades no

gap_x 0
gap_y 0
net_avg_samples 2
no_buffers yes
out_to_console no
out_to_stderr no
extra_newline no

own_window yes
own_window_type normal
own_window_transparent yes
own_window_colour 000000
own_window_argb_visual yes
own_window_argb_value 0
own_window_hints undecorated,below,sticky,skip_taskbar,skip_pager

minimum_size 280 230
stippled_borders 0
update_interval 1.0
uppercase no
use_spacer none

show_graph_scale no
show_graph_range no

use_xft yes
xftalpha 0.1
xftfont Droid Sans:size=9
#color0 white
#color1 EAEAEA
#color2 FFA300
#color3 grey

color0 white
color1 slate grey
color2 red
color3 blue
color4 green

TEXT
${color gray}
${exec tail -n 15 /var/log/syslog }

答案1

您可以将任何 ansi 转义序列转换为 conky 颜色命令,并使用execp而不是exec解析输出。

例如,(不是 ansi),您可以使用红色突出显示systemd:文本

${execp tail -n 15 /var/log/syslog |
  sed 's/systemd:/${color red}&${color gray}/g'
}

相关内容