Conky

Eric讨论 | 贡献2021年12月16日 (四) 04:23的版本 (创建页面,内容为“==简介== ===时间轴=== == 基础知识 == == 配置文件 == <syntaxhighlight lang="lua"> -- 显示的配置 conky.config = { update_interval=10, --…”)
(差异) ←上一版本 | 最后版本 (差异) | 下一版本→ (差异)

简介

时间轴

基础知识

配置文件

-- 显示的配置
conky.config = {
    update_interval=10,       -- 刷新时间,10秒
    alignment = 'top_left',   -- 左上角显示
    own_window = true,        -- 界面显示
    own_window_hints = 'undecorated,below,sticky,skip_taskbar,skip_pager',
}

-- 显示的信息
conky.text = [[
hello world !

cpu: ${cpu}%
users:${user_number}
]]

将配置保存到一个文件,如conkyrc,指定配置文件启动:conky -c conkyrc

了解更多 >> conky 文档:配置


显示的配置

显示的信息

内置变量

了解更多 >> Conky 文档:变量



资源

官网

相关网站

相关文章