hi,
ich hab da ein kleines problem mit conky, das ich nicht auf die reihe kriege. ich habe conky installiert, konfiguriert und alles läuft wunerbar... wenn ich es aus dem terminal starte. dann hab ich conky in meine autostart.sh gepackt, es erscheint beim login auch, aber es ist immer im vordergrund, d.h. ich kann die fenster "drunterschieben" hab auch die reihenfolge in der autostart.sh mal gewechselt, keine veränderung.
hat jemand eine idee an welcher einstellung das liegen kann (nochmal kurz und bündig: ich will conky im hintergrund auf dem desktop laufen haben, ohne rahmen und alles...)
vielen dank,
tim
meine .conkyrc:
# Conky, a system monitor, based on torsmo
#
# Any original torsmo code is licensed under the BSD license
#
# All code written since the fork of torsmo is licensed under the GPL
#
# Please see COPYING for details
#
# Copyright (c) 2004, Hannu Saransaari and Lauri Hakkarainen
# Copyright (c) 2005-2007 Brenden Matthews, Philip Kovacs, et. al. (see AUTHORS)
# All rights reserved.
#
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation, either version 3 of the License, or
# (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
# You should have received a copy of the GNU General Public License
# along with this program. If not, see <http://www.gnu.org/licenses/>.
#
# $Id: conky.conf 1193 2008-06-21 20:37:58Z ngarofil $
alignment top_left
background yes
border_width 1
cpu_avg_samples 2
default_color white
default_outline_color white
default_shade_color white
draw_borders no
draw_graph_borders yes
draw_outline no
draw_shades no
font 6x10
gap_x 0
gap_y 0
maximum_width 1280
minimum_size 1276 5
net_avg_samples 2
no_buffers yes
out_to_console no
own_window yes
own_window_class Conky
own_window_type override
stippled_borders 0
update_interval 3.0
uppercase no
use_spacer none
show_graph_scale no
show_graph_range no
TEXT
${alignc} $sysname $kernel | uptime: $uptime_short | cpu $cpu% | ram: $memperc% ($memmax) | processes: $running_processes | root: ${fs_used_perc /}% used | home: ${fs_used_perc /home}% used ${if_up wlan0}| up: ${upspeed wlan0} k/s | down: ${downspeed wlan0} k/s $endif${if_up eth0}| up: ${upspeed eth0} k/s | down: ${downspeed eth0} k/s $endif| battery: ${battery BAT1}
meine autostart.sh:
#!/bin/sh
conky &
nitrogen --restore &
pypanel &
und die .xinitrc:
#!/bin/sh
#
# ~/.xinitrc
#
# Executed by startx (run your window manager from here)
#
#nitrogen --restore &
#pypanel &
#conky &
exec openbox-session
...