0

I don't use things like Ubuntu One. How do I disable it from Startup Applications? I believe it is hidden by default along with some other apps.

TomKat
  • 3,878
joon
  • 33

1 Answers1

2

You have to edit /etc/xdg/autostart/ and either:

  • remove the NoDisplay=true lines;
  • or make those same lines comments by adding # in front of them;
  • or replace true by false in those same lines.

The alternate solution can be easily done in three steps:

  1. Summon the terminal with Ctrl + Alt + T.
  2. Type the two following commands:

    cd /etc/xdg/autostart/
    sudo sed --in-place 's/NoDisplay=true/NoDisplay=false/g' *.desktop
    

After changing anything you want, you can go back to the previous state by typing this into the terminal:

sudo sed --in-place 's/NoDisplay=false/NoDisplay=true/g' *.desktop

This has been tested in 12.04, 12.10 and 13.04.

Sources: 1. This answer by chtfn 2. How to enable all the apps in the Startup Applications in Ubuntu

TomKat
  • 3,878
  • It's fine. Just make sure that you search for existing Qs that may help you before yu ask another Q. (That's why I marked it a duplicate.) The +1s were just to welcome you to the community. :-) – TomKat Oct 05 '13 at 05:44
  • 1
    I want to remove Ubuntu One. Can you help me? http://askubuntu.com/questions/353987/remove-ubuntu-one – joon Oct 05 '13 at 10:07