以下、環境はUbuntu(Xfceデスクトップ環境を導入)をインストールしたポータブック。
conkyインストール
$ sudo apt install conky
設定ファイル
以下を、 /home/ユーザー名/ 内に「.conkyrc」ファイルとして保存。
#位置 top_rightなら右上
alignment top_right
gap_x 15
gap_y 35
background yes
border_width 1
cpu_avg_samples 2
#デフォルトフォントカラー
default_color blue
default_outline_color black
default_shade_color black
double_buffer yes
draw_borders no
draw_graph_borders yes
draw_outline no
draw_shades no
use_xft yes
#フォント指定・フォントサイズ
xftfont UmePlus Gothic:size=12
minimum_size 5 5
net_avg_samples 2
no_buffers yes
out_to_console no
out_to_stderr no
extra_newline no
own_window yes
own_window_class Conky
#own_window_type desktop
own_window_type override
#own_window_type normal
own_window_transparent yes
stippled_borders 0
update_interval 1.0
uppercase no
use_spacer none
show_graph_scale no
show_graph_range no
TEXT
$sysname $kernel on $machine
HDD:空き ${fs_free /}
使用 ${fs_used /}/${fs_size /}
バッテリー残り:${battery_time}
充電状態・残量(%):${battery}
${battery_bar}
RAM(メモリ):$mem/$memmax - $memperc%
${membar}
SWAP:$swap/$swapmax - $swapperc%
${swapbar}
CPU:$color $cpu%
${cpubar}
#${color skyblue}Name CPU MEM
#${color skyblue}${top name 1} ${top cpu 1} ${top mem 1}
#${color skyblue}${top name 2} ${top cpu 2} ${top mem 2}
#${color skyblue}${top name 3} ${top cpu 3} ${top mem 3}
#${color skyblue}${top name 4} ${top cpu 4} ${top mem 4}
conky起動
$ conky
自動起動
以下の内容のスクリプト(startup.sh)をユーザーフォルダ(/home/ユーザー名/)内に作成。
#!/bin/bash
sleep 10
conky
ポータブックの場合、音声出力対策として、pavucontrolを追加していてもよい。
詳細は「PulseAudioサーバーが接続されていない場合(PulseAudioデーモン起動失敗?)の対処方法」を参照のこと。
このスクリプトを起動後、自動で実行するように登録する。
- アプリケーションメニュー>設定>セッションと起動>自動開始アプリケーション に以下の内容を追加。(※ユーザー名のところは適宜変更。)
- 名前:startup
- 説明:conky
- コマンド:bash /home/ユーザー名/startup.sh