How to Show Hidden Ubuntu Startup Applications

Today, I’m going to explain how to show the hidden Ubuntu startup applications.

First, enter startup in the Dash and you should be able to launch the startup applications preferences window.

 Hidden Startup Applications

By default, system defined startup applications are hidden and only user defined startup programs can be seen in the window.

Startup Applications Preferences_001

The file for these system defined startup applications are stored under /etc/xdg/autostart/ directory. These files end with .desktop extension.

 Hidden Startup Applications

If you open up one of these files in a text editor, then you will see a NoDisplay parameter and its default value is set to true so the application will not be displayed in startup applications preferences window.

 Hidden Startup Applications

To show these hidden Ubuntu startup applications, you just have to change the value of NoDisplay to false. But if you want all of them to be displayed, you have to open each individual .desktop file and change the value. That’s certainly a tedious process. Fortunately, there is a convenient command to change these NoDisplay value all at once.

Say hello to the sed editor and run the following command in the terminal.

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

sed is a stream editor. Allow me to explain the above command.

  • -i is short for –in-place. That means sed will edit files in place.
  • s/NoDispaly=true/NoDisplay=false means sed will search the NoDisplay=true regular expression and replace it with NoDisplay=false.
  • /etc/xdg/autostart/*.desktop means all .desktop files under /etc/xdg/autostart directory.

After you run the above command, all system defined startup applications will be displayed.

 Hidden Startup Applications

To hide these system defined startup application again, run the following command:

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

As always, if you found this post useful,  subscribe to our free newsletter or follow us on Google+Twitter or like our Facebook page.

Rate this tutorial
[Total: 11 Average: 4.6]

One Response to “How to Show Hidden Ubuntu Startup Applications

  • This is great to know. Thank you!

    One problem I can’t solve with this is stopping the indicator services for bluetooth, keyboard, power, and printers. Unchecking them has no effect. Any hints about how I can do this without breaking anything?

    Thanks!

Leave a Comment

  • Comments with links are moderated by admin before published.
  • Your email address will not be published.
  • Use <pre> ... </pre> HTML tag to quote the output from your terminal/console.
  • Please use the community (https://community.linuxbabe.com) for questions unrelated to this article.
  • I don't have time to answer every question. Making a donation would incentivize me to spend more time answering questions.

The maximum upload file size: 2 MB. You can upload: image. Links to YouTube, Facebook, Twitter and other services inserted in the comment text will be automatically embedded. Drop file here