Conky是一個輕量級的系統(tǒng)監(jiān)視工具,可以在Linux系統(tǒng)中顯示系統(tǒng)信息,如CPU使用率、內存使用情況、磁盤空間等
打開終端(Ctrl + Alt + T)
更新軟件包列表:
sudo apt-get update
sudo apt-get install conky conky-all
sudo apt-get install ttf-ancient-fonts
mkdir ~/.conky
cp /etc/conky/conky.conf ~/.conky/
nano ~/.conky/conky.conf
background yes
update_interval 1
total_run_times 0
own_window yes
own_window_type normal
own_window_transparent yes
own_window_hints undecorated,below,sticky,skip_taskbar,skip_pager
double_buffer yes
draw_shades no
draw_outline no
draw_borders no
draw_graph_borders yes
default_color white
default_shade_color red
default_outline_color green
alignment top_right
gap_x 10
gap_y 10
minimum_size 100 5
maximum_width 500
use_xft yes
xftfont Droid Sans:size=8
uppercase no
cpu_avg_samples 2
net_avg_samples 2
override_utf8_locale yes
no_buffers yes
text_buffer_size 2048
temperature_unit celsius
TEXT
${time %H:%M:%S}
CPU: ${cpu}%
MEM: ${memperc}%
DISK: ${fs_used_perc /}/${fs_free_perc /}
NET: ${downspeed eth0} ${upspeed eth0}
保存并退出編輯器(在nano中,按Ctrl + X,然后按Y,最后按Enter)。
在終端中運行Conky:
conky -q -c ~/.conky/conky.conf
現(xiàn)在,您應該能看到Conky在屏幕右上角顯示系統(tǒng)信息。要讓Conky在啟動時自動運行,請將以下命令添加到啟動項中:
gnome-session-properties
conky -q -c ~/.conky/conky.conf
現(xiàn)在,每次啟動Ubuntu時,Conky都會自動運行并顯示系統(tǒng)信息。