kali下配置conky,实现桌面美化监控系统

简介: 版权声明:转载请注明出处:http://blog.csdn.net/dajitui2024 https://blog.csdn.net/dajitui2024/article/details/79396653 ...
版权声明:转载请注明出处:http://blog.csdn.net/dajitui2024 https://blog.csdn.net/dajitui2024/article/details/79396653

更多参考:
1、https://bbs.deepin.org/forum.php?mod=viewthread&tid=28762&extra=
2、https://bbs.deepin.org/forum.php?mod=viewthread&tid=36296&extra=

 sudo apt-get install conky -y
安装conky 

vim  /root/.conkyrc 
配置conky

配置内容如下:

# set to yes if you want Conky to be forked in the background
background no
cpu_avg_samples 2
net_avg_samples 2
out_to_console no
# X font when Xft is disabled, you can pick one with program xfontsel
#font 7x12
#font 6x10
#font 7x13
#font 8x13
#font 7x12
#font *mintsmild.se*
#font -*-*-*-*-*-*-34-*-*-*-*-*-*-*
#font -artwiz-snap-normal-r-normal-*-*-100-*-*-p-*-iso8859-1
# Use Xft?
use_xft yes
# Xft font when Xft is enabled
xftfont Sans:size=8  
own_window_argb_visual yes
#own_window_colour hotpink
# Text alpha when using Xft
xftalpha 0.8
# on_bottom yes
# mail spool
mail_spool $MAIL
# Update interval in seconds
update_interval 1
# Create own window instead of using desktop (required in nautilus)
own_window yes
own_window_transparent yes
own_window_hints undecorated,below,sticky,skip_taskbar,skip_pager
#own_window_type override
own_window_type normal
# Use double buffering (reduces flicker, may not work for everyone)
double_buffer yes
# Minimum size of text area
minimum_size 260 5
maximum_width 400
# Draw shades?
draw_shades no
# Draw outlines?
draw_outline no
# Draw borders around text
draw_borders no
# Stippled borders?
stippled_borders no
# border margins
border_margin 4
# border width
border_width 1
# Default colors and also border colors
default_color white
default_shade_color white
default_outline_color white
# Text alignment, other possible values are commented
#alignment top_left
#minimum_size 10 10
gap_x 15
gap_y 20
alignment top_right
#alignment bottom_left
#alignment bottom_right
# Gap between borders of screen and text
# Add spaces to keep things from moving about?  This only affects
# certain objects.
use_spacer none
# Subtract file system buffers from used memory?
no_buffers yes
# set to yes if you want all text to be in uppercase
uppercase no
# none, xmms, bmp, audacious, infopipe (default is none)
# xmms_player bmp
TEXT
${color white}SYSTEM ${hr 1}${color}
Time:$alignr${time %Y.%m.%d}$alignc   ${time %H:%M:%S}$alignr   Week:${time %w}
Hostname: $alignr$nodename
Kernel: $alignr$kernel
Machine:$alignr$machine
Uptime: $alignr$uptime
Temp: ${alignr}${acpitemp} °C
Battery:$alignr${battery BAT0}
#Battery:$alignr${battery_percent BAT0}%  
CPU: ${alignr}${freq dyn} MHz
Processes: ${alignr}$processes ($running_processes running)
Load: ${alignr}$loadavg
CPU1 ${alignr}${cpu cpu1}%
${cpubar 4 cpu1}
CPU2 ${alignr}${cpu cpu2}%
${cpubar 4 cpu2}
Ram ${alignr}$mem / $memmax ($memperc%)
${membar 4}
swap ${alignr}$swap / $swapmax ($swapperc%)
${swapbar 4}
Highest CPU $alignr CPU% MEM%
${top name 1}$alignr${top cpu 1} ${top mem 1}
${top name 2}$alignr${top cpu 2} ${top mem 2}
${top name 3}$alignr${top cpu 3} ${top mem 3}
Highest MEM $alignr CPU% MEM%
${top_mem name 1}$alignr${top_mem cpu 1} ${top_mem mem 1}
${top_mem name 2}$alignr${top_mem cpu 2} ${top_mem mem 2}
${top_mem name 3}$alignr${top_mem cpu 3} ${top_mem mem 3}
${color white}FILE SYSTEM ${hr 1}${color}
Root: ${alignr}${fs_free /} / ${fs_size /}
${fs_bar 4 /}
Home: ${alignr}${fs_free /home} / ${fs_size /home}
${fs_bar 4 /home}
${color white}NETWORK ${hr 1}${color}
Down ${downspeed eth0} k/s ${alignr}Up ${upspeed eth0} k/s
${downspeedgraph eth0 25,107} ${alignr}${upspeedgraph eth0 25,107}
Total ${totaldown eth0} ${alignr}Total ${totalup eth0}
#${color white}NEWS $color
#${rss http://www.linuxeden.com/plus/rss.php?tid=1 5 item_titles 2}

效果如图
启动工具
root@kali:/opt# cat cokyrun.sh 
#!/bin/bash
/usr/bin/conky &
相关文章
|
网络安全 网络架构
ENSP-Kali环境联动
1.ENSP介绍 eNSP(Enterprise Network Simulation Platform)是一款由华为提供的免费的、可扩展的、图形化的网络设备仿真平台,主要对企业网路由器、交换机、WLAN等设备进行软件仿真,完美呈现真实设备部署实景,支持大型网络模拟,让你有机会在没有真实设备的情况下也能够开展实验测试,学习网络技术。
635 0
ENSP-Kali环境联动
|
编解码 文字识别 并行计算
电脑软件推荐【含软件链接】:压缩,插件,截屏,录制,办公,电脑防护与修复,磁盘清理,软件卸载(二)
电脑软件推荐【含软件链接】:压缩,插件,截屏,录制,办公,电脑防护与修复,磁盘清理,软件卸载......
401 0
|
20天前
|
存储 监控 安全
公司监控电脑:Tcl/Tk 用于构建监控系统的图形界面
本文介绍了如何使用 Tcl/Tk 构建公司电脑监控系统的图形界面。主要内容包括创建主窗口、显示监控信息的文本框以及绘制监控数据图表。通过这些代码示例,可以逐步构建一个功能完善的监控系统,为公司的信息安全和资源管理提供支持。
29 1
|
2月前
|
安全 Linux iOS开发
ONLYOFFICE 桌面编辑器8.1---一个高效且强大的办公软件
ONLYOFFICE 桌面编辑器8.1---一个高效且强大的办公软件
59 2
|
6月前
|
存储 监控 安全
哪款电脑监控软件最好丨监控工具推荐
挑选合适的监控软件对家庭网络和企业生产力至关重要。WorkWin提供权限管理、远程控制、时间统计,确保工作效率和信息安全。Norton Family允许管理应用使用时间、限制上网时间,保护孩子免受网络危害。Kaspersky Safe Kids具有实时定位、警报设置和多平台支持,保障孩子安全。这些工具能帮助用户做出明智选择。[来源](https://www.bilibili.com/read/cv35295466/)
150 3
|
6月前
|
安全 网络安全 C++
电脑新装系统优化,win10优化,win10美化
电脑新装系统优化,win10优化,win10美化
52 4
|
7月前
|
文字识别 监控 API
Perl在屏幕监控软件中的高级应用
本文介绍了Perl在屏幕监控软件中的高级应用,包括使用GD::Image和Win32::GuiTest模块实现屏幕截图,利用GetAsyncKeyState记录键盘和鼠标活动,以及结合GD和Tesseract::OCR进行图像处理和文字识别。此外,还展示了如何运用LWP::UserAgent自动提交监控数据到网站。这些示例突显了Perl在灵活处理屏幕监控任务方面的强大能力。
127 0
|
7月前
Wallhaven壁纸管理工具
wallhaven是我很喜欢的一个壁纸网站,但每次都需要把壁纸下载保存再保存,再手动替换,感觉太麻烦了。所以动手写该软件,可以直接浏览网站的壁纸,支持一键设置成壁纸,附加功能是可以定时切换壁纸
51 5
|
Web App开发 缓存 运维
电脑软件推荐【含软件链接】:压缩,插件,截屏,录制,办公,电脑防护与修复,磁盘清理,软件卸载(一)
电脑软件推荐【含软件链接】:压缩,插件,截屏,录制,办公,电脑防护与修复,磁盘清理,软件卸载......
274 0
|
前端开发 BI C#
手麻系统源码,C# .net 桌面软件,采用下拉式汉化菜单,界面友好,实用性强
提供手术病人检索、手术申请、手术安排、急诊手术,查看手术申请单、查看手术通知单,填写病人术前会诊记录、谈话记录、麻醉记录,器械准备、手术记录、附加手术、器械清点及术后护理信息等功能。 提供手术查询、手术报表查询、术后信息统计等查询功能。
179 0
手麻系统源码,C# .net 桌面软件,采用下拉式汉化菜单,界面友好,实用性强
下一篇
无影云桌面