How to permanently disable the "save session" feature in Xubuntu?

20,230

Solution 1

The solution is two-step.

  1. Disable Automatically save sessions on logout in Settings > Sessions > General > Logout Settings. Also make sure that you disable Save session for future logins in the Logout prompt (the window that pops when you actually try to logout).

    See:

  2. You need to log out, delete the contents of ~/.cache/sessions, then log into a clean session. (You can also delete your current session via Settings > Sessions > Session > Clear Saved Sessions.)

    See:

Solution 2

Delete existing sessions:

$ rm .cache/session/*

Make directory read-only:

$ chmod -w .cache/session

You can enable session-saving by granting Write right on the directory:

$ chmod +w .cache/session

(Tested with Xubuntu 14.04)

Solution 3

I'm sorry if it isn't answer, but I can't comment.

I have had same problem with that bug. And I "resolved" it by using "delete part" of your script:

#!/bin/bash

#edit.1: It will be launched by root, so we have to use full path here.
DIR=/home/USERFOLDER/.cache/sessions/

delete_sessions(){
    # Deletes whatever is in DIR
    rm -r -- "$DIR"
}

is_directory(){
    if [ -d "$DIR" ]; then
        delete_sessions
    else 
        echo "wtf man, it's not there?!"
    fi
}

is_directory 

I execute this-way modified script on reboot and shutdown.

This can be set-up according to instructions on site: http://en.kioskea.net/faq/3348-ubuntu-executing-a-script-at-startup-and-shutdown

Share:
20,230

Related videos on Youtube

Dut
Author by

Dut

Updated on September 18, 2022

Comments

  • Dut
    Dut almost 2 years

    I'm running Xubuntu 13.10 with xfce4-panel 4.10.1 and my sessions keeps getting saved involuntarily. I'm well aware that this is a bug so I'd like to ask if anyone knows a workaround to permanently disable/delete this feature (by removing/editing some files maybe)?

    I've spent hours searching and tried a lot of the methods already but none of them worked, or at least were not permanent. Some of the stuff I've tried:

    How can I turn off Xfce session saving system-wide?
    (This basically just removed the tick-box in the logout prompt)

    Xubuntu reopens last session applications even though it shouldn't
    (Deleting the cached sessions was not a permanent solution)

    I would greatly appreciate your help!

    My temorarily solution:
    I created a simple bash script and placed an application launcher (which runs the script when pressed) on my task panel. The script will delete the "~/.cache/sessions" directory and promt log out.

    The script can be found here: http://pastebin.com/aqx483pn

    Basically this will be the button which you use to logout/reboot/shutdown.


    Update: This only occurs if you added "restart" to the listing, in your "Action Button" (the button with your username written on). If you restart using log out -> restart it should reboot normally and not save your session. Thus, the temporarily solution above is not necessary, I will leave it there as a reference.

  • Dut
    Dut over 10 years
    As mentioned, this is a bug. I've already set every single option related to session to off, at those that have a GUI. Thanks for the reply!
  • landroni
    landroni over 10 years
    Did you try the non-GUI solution?
  • Dut
    Dut over 10 years
    Yes, I've been using it as a temporarily solution. The problem is that the sessions keep getting cahed thus the session directory and its file keeps coming back. (gonna update the first post with the temporarily "solution" I'm using now)
  • landroni
    landroni over 10 years
    Strange. Did you make sure that you removed the cache after logging out from Xfce? In any case, I'm not seeing this behaviour that you describe (I have the two relevant settings turned off). You may have better luck with 4.12, that you can install from launchpad.net/~xubuntu-dev/+archive/xfce-4.12 .
  • Dut
    Dut over 10 years
    I've located where the problem arises. It is when you use the "action buttons" from xfce's panel. I think it only affects restart and maybe log out. And deleting the session folder after logging out doesn't do it. Before trying to update xfce, I'd like to ask you if it will bring any changes to my current settings?
  • landroni
    landroni over 10 years
    Yes and no. The upgrade should take into account old settings (you may of course keep a backup, though). And beware that this is unreleased, beta software. This said, I'm running 4.12 and it's rock stable. And in my experience Xfce updates behave OK wrt to old prefs.
  • Dut
    Dut over 10 years
    Alright, I will perform the update then but first I'd just need to make sure, is it "~/.config/xfce4" that should be backed up? I have only been using Xubuntu for a week thus I'm not really used to the location of everything.
  • landroni
    landroni over 10 years
    Just to be safe, you could backup ~/.config and ~/.local, where most Xfce-related config files seem to reside (e.g. there is ~/.config/Thunar, etc.).
  • Dut
    Dut over 10 years
    I followed this guide: goo.gl/SUQVON to install the latest updates, though it did not actually get updated. I'm still on the same version. Also my "s" key got messed up during the process of installing this for some reason. When I press "s" the computer takes it as I'm pressing "ctrl + s". Any thoughts on what went wrong? Edit: I tried using the backed up .config and .local, still the same.
  • landroni
    landroni over 10 years
    Well, what matters is the version of the individual components; here I'm running 4.12, but the About dialogue still indicates 4.10. Strange to hear about the "s" key. Perhaps you have some customizations lying around somewhere? Also have you checked both WM > Keyboard and Keyboard > Shorcuts that "s" is not bound to anything?
  • Dut
    Dut over 10 years
    I see! thought it was suppose to change. And yes, I double checked the keyboard settings, nothing unusual there. I've also located the real culprit now that I tried it on my other laptop. If you add the "restart" button to the listing in your "action button" and use it, it will automatically save you session upon reboot. However, if you click "restart" via the "log out" menu (xfce4-session-logout) it won't save your session. I just have to avoid using that shortcut I guess.
  • Dut
    Dut over 10 years
    I really appreciate you taking your time to help me btw but should I accept your answer? It can partially solve the problem for some people. Not sure how things work around here. Additionally, I decided to just reinstall the whole system to get rid of junk that might have caused the "s-button" error.
  • landroni
    landroni over 10 years
    Great to hear. Yes, I guess this answer (plus the comments) answers your original question, so you can accept and upvote. It seems that this issue has already been reported upstream: bugzilla.xfce.org/show_bug.cgi?id=10116 .
  • bfrguci
    bfrguci about 8 years
    I think this one is simpler and also works well.