Page 1 of 1

<Solved> Bianca Session Automatically Saves

Posted: Mon Mar 12, 2007 8:53 am
by donlinux
Interesting quirk here. I'm using Bianca and love it! In my configuration, under apps/gnomesession/options, I do not have the autosave session box checked, yet each time I reboot, it saves my session. Am I missing something else?

Thanks,

Posted: Mon Mar 26, 2007 8:00 am
by Husse
Do you still have the problem?

Bianca saves session

Posted: Tue Mar 27, 2007 6:44 am
by donlinux
Yes, I've not been able to get back to a normal boot. Even when I close all programs, windows etc... and save my session, when I reboot, it comes up with the first session I ever closed with, which has one file browser window open, the sys config. window open and Mailwasher automatically starts. It's not overly bothersome, as I just close the windows, but I would eventually like to fix it.

another interesting quirk

Posted: Sat Apr 14, 2007 7:38 am
by donlinux
yet another interesting quirk upon boot. Suddenly, Open Office Writer wants to open each time I boot up. I've even gone as far as checking off "save session", closing all open apps., and rebooting. Same thing happens. I also checked my startup programs folder and O.O. is not listed as starting upon boot.

Any ideas anyone ?

Thanks,

Don

Posted: Sat Apr 14, 2007 2:52 pm
by Husse
Sounds like when Windows gets its registry messed up. Linux does not have a registry, but config files. To me it seems like some config file(s) are messed up.
This is probably not much help but you could try to find something this way:
Open a terminal
use the following command:
locate relevant_file | grep "relevant_word"
note that relevant_file must not have quotes, but "relevant_word" must have, and that you can use a part of what you are looking for (locate open gives you open office and a lot more "open things") and that it is case sensitive. (wildcards accepted n*idia gives nvidia and nVidia)
This searches your entire system for relevant_file and checks if "relevant_word" is found in the file and if so tells you the file name.
So what I was thinking of is something like this
locate open | grep "session"
but that only gives openssh
If you try some combinations you might come up with something. And this is really fast - if you're used to searching in Windows - forget it - this is a quadrillion times faster. :)
//edit// I forgot - you should do "sudo updatedb" before you use locate - it updates the index locate uses

Posted: Sat Apr 14, 2007 10:32 pm
by Boo
gnome session save info is kept in these 2 places:
default gnome user session

/usr/share/gnome/default.session

user save session

$HOME/.gnome2/session

I would look in these 2 files but the user one is where your changes should be.
if you dont save a session (uncheck save) the user session file should be deleted.
you could manually delete this file and your session should go back to the default one.

gnome could also have some bug where it doesn't delete the session or saves it to the wrong place....
:D

Appears to have worked!

Posted: Sun Apr 15, 2007 7:02 am
by donlinux
found an entry for Open Office in $HOME/.gnome2/session. Edited it out, rebooted and everything appears to work nicely.

Many thanks for the help.