Skip to content

Instantly share code, notes, and snippets.

@s0kil
Last active December 22, 2022 19:31
Show Gist options
  • Select an option

  • Save s0kil/6495d7c9d3c1ee9d8e5f5abffcf8ecea to your computer and use it in GitHub Desktop.

Select an option

Save s0kil/6495d7c9d3c1ee9d8e5f5abffcf8ecea to your computer and use it in GitHub Desktop.
Show Hidden Startup Program In Ubuntu Based OS/Distro

This is just a quick find and replace command that changes the NoDisplay=false with NoDisplay=true in all the programs that are in autostart. Once you do this, open Startup Applications and you shall see many more programs here:

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

sed -i 's/NoDisplay=true/NoDisplay=false/g' ~/.config/autostart/*.desktop
sed -i 's/Hidden=true/Hidden=false/g' ~/.config/autostart/*.desktop

References:

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment