我正在尝试在 Ubuntu 上配置 conky,因为我需要在桌面上显示我的待办事项列表。
文件显示了,但是文本被截断(不是矩形,只是在某些字符限制之后)。
如何显示整个文件?
这是我的设置:
# Text alignment, other possible values are commented
alignment top_right
# Gap between borders of screen and text
gap_x 10
gap_y 10
# Maximum size of buffer for user text, i.e. below TEXT line.
max_user_text 16384
# stuff after 'TEXT' will be formatted on screen
TEXT
${execi 30 cat /home/user/Documents/todo.txt}
答案1
将文本通过管道传输到fold
命令:
${execi 30 cat /home/user/Documents/todo.txt | fold -w N}
其中N
是要显示的文本列数。
尝试更改选项的值text_buffer_size
和/或文件中行max_user_text
之前的值TEXT
conkyrc