conky - 엄격한 너비 제한을 설정하는 방법

conky - 엄격한 너비 제한을 설정하는 방법

화면 상단을 가로지르는 수직 conky 막대를 수평 conky 막대로 변경하고 있습니다.

의 경우 Name and CPU %최대 너비 열을 설정하는 방법은 무엇입니까? Name CPU%다음 열을 오프셋으로 가져오도록 고정 너비를 설정해야 합니다 . 이제 터미널 가장자리 끝까지 자동으로 확장됩니다.

여기에 이미지 설명을 입력하세요.

conky.text = [[
${alignc} Darin's Computer <<<Gentoo>>> on $machine
$stippled_hr
${alignc}${color}Uptime:${color} $uptime ${color}
${voffset 10}${color }${color}CPU Temperature: ${color white}${exec sensors | grep Tctl | cut -c16-17} c
${color yellow}${cpugraph cpu0 40,500ffff00 ffffff}
${voffset -67} ${offset 545}${color }RAM Usage:${color white} $memperc
${offset 550}${color}${color yellow}${membar 8,500 /}
${offset 550}${color}File Systems:${color white} ${fs_used_perc /}
${offset 550}${color yellow}${fs_bar 8,500 /}

$color$stippled_hr

${voffset -105}${offset 1130}${color}Name       ${alignr}CPU o/o #HERE IS WHERE I NEED TO SET A HARD WIDTH
${offset 1130}${color white} ${top name 1} ${alignr}${top cpu 1}
${offset 1130}${color yellow} ${top name 2} ${alignr}${top cpu 2}
${offset 1130}${color yellow} ${top name 3} ${alignr}${top cpu 3}
${offset 1130}${color yellow} ${top name 4} ${alignr}${top cpu 4}

${color}$stippled_hr

${offset 1300}${color}Networking:
 Down:${color white} ${downspeed enp2s0} k/s${color white}
${color yellow}${downspeedgraph enp2s0 10,150 ffffff}
${color}${offset 5}Up:${color white} ${upspeed enp2s0} k/s
${color yellow}${upspeedgraph enp2s0 10,150 ffffff}

${color}Port(s) and Connections 
$color Inbound: ${color white}${tcp_portmon 1 32767 count} ${color} Outbound: ${color white}${tcp_portmon 32768 61000 count}  ${color}ALL: ${color white}${tcp_portmon 1 65535 count}
${color}Inbound Con. ${alignr} Port${color white}
 ${tcp_portmon 1 32767 rhost 0} ${alignr} ${tcp_portmon 1 32767 lservice 0}

답변1

tab한 가지 방법은 개체를 사용하여 오른쪽 머리글을 배치하고 오프셋을 사용하여 오른쪽 열 top개체를 배치하는 것입니다.

${offset 15}${color orange}Name${tab 160 15}CPU o/o
${offset 15}${color white}${top name 1}${offset 25}${top cpu 1}
${offset 15}${color yellow}${top name 2}${offset 25}${top cpu 2}
${offset 15}${color yellow}${top name 3}${offset 25}${top cpu 3}
${offset 15}${color yellow}${top name 4}${offset 25}${top cpu 4}

conky의 상단 개체에 대한 고정 너비 열 그림

관련 정보