Gentoo Archives: gentoo-user

From: "Zimmerling
To: gentoo-user@l.g.o
Subject: AW: AW: AW: [gentoo-user] metacity does not start
Date: Wed, 10 Oct 2007 07:07:59
Message-Id: F20A9A8CC000994FB8DEA7DF70350EF4522703@exchange.hitec-zang.de
In Reply to: Re: AW: AW: [gentoo-user] metacity does not start by Matthias Langer
1 Hi,
2
3 thanks for the reply, I'll try this, when I'm home this evening
4
5
6 On Tue, 2007-10-09 at 22:31 +0200, Matthias Langer wrote:
7 > On Tue, 2007-10-09 at 14:56 +0200, Zimmerling, Alexander wrote:
8 > > Hi,
9 > >
10 > > I ried this 'solution' just one time. Unfortunately, I installed a
11 lot of programs during the time. This problem appeared after upgrading
12 gnome to the latest stable version. I had no problems at all by using
13 gnome 2.16.
14 > >
15 > > I used a unstable version of gnome-2.18 once and downgraded because
16 of this problem. Nobody able to solve this problem.
17 > >
18 > > Matthias, can you post your 'very hackish way' please
19 >
20 > well, it's nothing special:
21 >
22 > "
23 > #!/bin/bash
24 > ! ps -u $(whoami) | grep metacity &> /dev/null && metacity& "
25 >
26 > put this in a file somewhere in your home directory, make it
27 > executable and add it to "Startup Programs" in "Sessions"...
28 >
29
30 or, if you want it more verbose:
31
32 "
33 #!/bin/bash
34
35 LOGFILE="${HOME}/meta.log"
36 COMPLAIN="metacity was not started by gnome"
37
38 ps -u $(whoami) | grep metacity &> /dev/null if [[ $? -ne 0 ]]; then
39 echo "$(date): $COMPLAIN" >> $LOGFILE
40 metacity&
41 fi
42 "
43
44 matthias
45
46 --
47 gentoo-user@g.o mailing list
48
49
50
51 --
52 gentoo-user@g.o mailing list