


System Software by ringwraith 5 comments
Oh and next milestone, seamlessrdp support :)
- Aug 15 2007

System Software by ringwraith 5 comments
- Aug 15 2007

Various KDE 1.-4. Improvements by ringwraith 5 comments
What does it do bascially?
Is the kdefastrestart program segfaulting upon start up?
If so, what is your distribution, kde version number, X11 version number.
The old version would most definatly segfault when there is a stale .kde/status/kderestart file. I fixed this by erasing stale kderestart files.
(very stupid bug, yes i know)
I have plans to really work on the initialization code more, hopefully fixing some of that. It is alpha software not beta software :).
Try the newer version, let me know if it works any better. It does has some bugs too sadly. I am working on this in my spare time, so if anyone would like to contribute any bug fixes, go over to the sourceforge site. - Jan 05 2006

Various KDE 1.-4. Improvements by ringwraith 5 comments
#!/bin/sh
DLG=`kdialog --title "Erasing Session - Restarting KDE" --progressbar "Time until shutdown..." 10`
TIME="10 9 8 7 6 5 4 3 2 1"
TIMELEFT=0
for loop in $TIME ; do
TIMELEFT=$(($TIMELEFT+1))
dcop "$DLG" "setProgress" $TIMELEFT
dcop "$DLG" "setLabel" "Your session will be erased. Time until session is erased and KDE is restarted: $loop seconds."
sleep 1
done;
touch $HOME/.kde/status/kderestart
dcop "$DLG" 'close'
dcop "ksmserver" "ksmserver" 'logout' '0' '0' '0'
rm ~/.kde/share/config/session/*
cat ~/.kde/share/config/ksmserverrc | grep -i '[^[command]]' > ~/.kde/share/config/ksmserverrc - Oct 09 2005