You are not logged in.
I put xcompmgr to autostart, but being started before gnome-panel it ignores parameter "-C" which sets no shadows for panels. So my gnome-panel casts shadow, by killall I can restart xcompmgr and it works fine.
I tried to use "pause 10; xcompmgr -cC" as startup command but xcompmgr doesn't start at all
Or is there any other way to make xcompmgr star after gnome has finished launching?
Thanks in advance!
Offline
use "sleep 10 && xcompmgr -cC"
archlinux - please read this and this — twice — then ask questions.
--
http://rsontech.net | http://github.com/rson
Offline
still nope - nothing starts with "sleep 10 && ..."
Offline
write a little script, something like this:
#!/bin/bash
sleep 7 && xcompmgr -cCmake it executable (chmod +x scriptname) and autostart the script instad of xcompmgr.
Offline
thanks, it helped!
Offline