Mailinglist Archive: opensuse-kde (156 mails)
| < Previous | Next > |
Re: [opensuse-kde] KOrganiser Reminder Daemon
- From: Oddball <monkey9@xxxxxx>
- Date: Tue, 11 Mar 2008 20:22:31 +0100
- Message-id: <47D6DBF7.3010206@xxxxxx>
K. Elo schreef:
Nice script btw. ;) 'Kill the Korgac!'
--
Enjoy your time around,
Oddball (Now or never...)
Besturingssysteem: Linux 2.6.24.1-6-default x86_64
Current user: oddball@AMD64x2-sfn1
System: openSUSE 11.0 (x86_64) Alpha2
KDE: 4.0.2 (KDE 4.0.2) "release 8.1"
---------------------------------------------------------------------
To unsubscribe, e-mail: opensuse-kde+unsubscribe@xxxxxxxxxxxx
For additional commands, e-mail: opensuse-kde+help@xxxxxxxxxxxx
Hi,So you got that anoyed to do something about it?
Oddball wrote (11.3.2008):
This about one of the oldest bugs around.
One of the reasons i am glad to be of KDE3.
Every starup the damn thing wrestles its way into the systray,
and every time i have to shut it down manualy... ;)
I am curious, if there will be reactions on it.
A simple workaround: create a script in ~/.kde/Autostart, which kills the korgac after KDE is up and running.
--- cut here ---
#!/bin/bash
#
# Kill korgac daemon
#
#
# Wait 2 mins. to be sure that all processes are up und running
sleep 2m
i=0
while true
do
ps -e | grep korgac &> /dev/null
if [[ $? == 0 ]]
then
kill $(ps -e | awk '/korgac/ { print $1 }') 2> /dev/null
break
fi
i=i+1
if [[ i == 100 ]]
then
# We don't want to create an infite loop
# -> quit after 500 seconds
# (Only if korgac is not started [and killed])
break
fi
sleep 5
done
--- cut here ---
Kind regards,
Kimmo
Nice script btw. ;) 'Kill the Korgac!'
--
Enjoy your time around,
Oddball (Now or never...)
Besturingssysteem: Linux 2.6.24.1-6-default x86_64
Current user: oddball@AMD64x2-sfn1
System: openSUSE 11.0 (x86_64) Alpha2
KDE: 4.0.2 (KDE 4.0.2) "release 8.1"
---------------------------------------------------------------------
To unsubscribe, e-mail: opensuse-kde+unsubscribe@xxxxxxxxxxxx
For additional commands, e-mail: opensuse-kde+help@xxxxxxxxxxxx
| < Previous | Next > |