UbuntuボックスをMaverick Meerkat(10.10)にアップグレードするまで、私はこの問題に遭遇しませんでした。基本的に、私がコンピュータを起動するたびに、CONKYは私が読み込んだウィンドウで描かれていることを除いて、それが任意のウィンドウに描かれます(下記のスクリーンショットを参照)。シングルセッションでこれを修正するには、実行してCONKYを簡単に再起動します。
killall conky; conky
_
端末に。 Conkyは、アクティブなウィンドウの下に再描画されます(すなわち、デスクトップにのみ表示されているだけ)、境界線/ドロップシャドウがありませんが、新しいセッションを開始するたびにこれを行う必要があります。これを修正する簡単な方法はありますか?
私は起動時に実行される小さなシェルスクリプトがありますが、問題を解決していないようです。
#!/bin/bash
sleep 10 && conky;
sleep 5 && killall conky; conky;
_
以下は私の.conkyrcファイルのテキスト以外の部分です。
# Conky settings #
background yes
update_interval 1
cpu_avg_samples 2
net_avg_samples 2
override_utf8_locale yes
double_buffer yes
no_buffers yes
text_buffer_size 2048
#imlib_cache_size 0
temperature_unit Fahrenheit
# Window specifications #
own_window yes
own_window_type override
own_window_transparent yes
own_window_hints undecorate,sticky,skip_taskbar,skip_pager,below
border_inner_margin 0
border_outer_margin 0
minimum_size 200 250
maximum_width 200
alignment tr
gap_x 220
gap_y 280
# Graphics settings #
draw_shades no
draw_outline no
draw_borders no
draw_graph_borders no
# Text settings #
use_xft yes
xftfont caviar dreams:size=8
xftalpha 0.5
uppercase no
temperature_unit celsius
default_color FFFFFF
# Lua Load #
lua_load ~/.lua/scripts/clock_rings.lua
lua_draw_hook_pre clock_rings
_
これがうまくいくかどうかわからない、どこかに私が次のことを見た:
on_bottom yes
_