Conky:修订间差异

(创建页面,内容为“==简介== ===时间轴=== == 基础知识 == == 配置文件 == <syntaxhighlight lang="lua"> -- 显示的配置 conky.config = { update_interval=10, --…”)
 
无编辑摘要
第1行: 第1行:
Conky是桌一款面环境的系统监控工具。免费开源,高度可定制。
==简介==
==简介==
===时间轴===
===时间轴===
* 2015年6月22日,Conky十周年,发布[https://github.com/brndnmtthws/conky/releases/tag/v1.10.0 Conky 1.10.0]。
* 2021年4月25日,发布[https://github.com/brndnmtthws/conky/releases/tag/v1.12.2 Conky v1.12.2]。
{{了解更多
|[https://github.com/brndnmtthws/conky/releases Conky 发行版]
}}


== 基础知识 ==
== 基础知识 ==


== 配置文件 ==
== 配置文件 ==
<syntaxhighlight lang="lua">
<syntaxhighlight lang="lua">
-- 显示的配置
-- 显示的配置
第48行: 第57行:
*Conky 用户配置文件:https://github.com/brndnmtthws/conky/wiki/Configs
*Conky 用户配置文件:https://github.com/brndnmtthws/conky/wiki/Configs
*Conky 变量:http://conky.sourceforge.net/variables.html
*Conky 变量:http://conky.sourceforge.net/variables.html
 
*Conky 配置文件示例:https://github.com/brndnmtthws/conky/wiki/Configs
===相关网站===


===相关文章===
===相关文章===
*[https://zh.wikipedia.org/wiki/Conky 维基百科:Conky]
*[https://en.wikipedia.org/wiki/Conky_(software) 维基百科:Conky(英文)]
*[https://wiki.archlinux.org/title/Conky_(简体中文) Archlinux 文档:Conky]
*[https://linuxconfig.org/system-monitoring-on-ubuntu-18-04-linux-with-conky linuxconfig.org:在Ubuntu 18.04上使用conky进行系统监控]
*[https://www.cnblogs.com/MineLSG/p/10413608.html cnblogs.com:Aircoinst_小任 - Linux 《conky配置说明书》]

2021年12月16日 (四) 06:46的版本

Conky是桌一款面环境的系统监控工具。免费开源,高度可定制。

简介

时间轴

了解更多 >> Conky 发行版


基础知识

配置文件

-- 显示的配置
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 文档:变量



资源

官网

相关文章