You are not logged in.

#1 2007-10-15 23:50:50

Flake
Member
Registered: 2007-09-11
Posts: 17

How to postpone application startup in Gnome Sessions

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

#2 2007-10-15 23:57:30

rson451
Member
From: Annapolis, MD USA
Registered: 2007-04-15
Posts: 1,233
Website

Re: How to postpone application startup in Gnome Sessions

use "sleep 10 && xcompmgr -cC"


archlinux - please read this and this — twice — then ask questions.
--
http://rsontech.net | http://github.com/rson

Offline

#3 2007-10-16 00:21:04

Flake
Member
Registered: 2007-09-11
Posts: 17

Re: How to postpone application startup in Gnome Sessions

still nope - nothing starts with "sleep 10 && ..."

Offline

#4 2007-10-16 00:32:11

fwojciec
Member
Registered: 2007-05-20
Posts: 1,411

Re: How to postpone application startup in Gnome Sessions

write a little script, something like this:

#!/bin/bash
sleep 7 && xcompmgr -cC

make it executable (chmod +x scriptname) and autostart the script instad of xcompmgr.

Offline

#5 2007-10-16 01:01:39

Flake
Member
Registered: 2007-09-11
Posts: 17

Re: How to postpone application startup in Gnome Sessions

thanks, it helped!

Offline

Board footer

Powered by FluxBB