Sunday, April 28, 2024
 Popular · Latest · Hot · Upcoming
66
rated 0 times [  66] [ 0]  / answers: 1 / hits: 53423  / 3 Years ago, sat, june 19, 2021, 9:14:02

When you go to "Startup Applications", you see a list of commands that are executed at startup and you can add your own.



I would like to know where this list is stored. Is it in gconf somewhere?



There are two reasons I want to know this:




  • add commands programmatically

  • disable some commands (in Oneiric, the default ones are not shown anymore)


More From » startup

 Answers
5

As per the Desktop Application Autostart Specification, which Ubuntu and all major desktop environments like Gnome, LXDE, XFCE follow, the Startup Applications are .desktop files stored per-user in



~/.config/autostart


And also globally, for all users, in



/etc/xdg/autostart


(this is a simplification, the real directories are determined by XDG Base Directory Specification)



The enable/disable feature is provided by this attribute in each .desktop file:



X-GNOME-Autostart-enabled=true (or false)


If a user toggles enable/disable status of a given application (without deleting it) that was in the system folder, it is copied to the user directory and then the attribute X-GNOME-Autostart-enabled is changed. If a user deletes a given application from the list, the .desktop is copied to user folder with the Hidden=true attribute (or the file is simply deleted if it was present just in the user directory)



Files in both user and system folder does not need to be marked as executable. Default permission is 644 (rw-r--r--). Executable permission for .desktop files are only useful for launchers in your desktop area (the workspace), so they show their icon and allow double-click to start the application. For Dash, Launcher, Autostart and menus in general the executable bit is irrelevant.


[#43296] Saturday, June 19, 2021, 3 Years  [reply] [flag answer]
Only authorized users can answer the question. Please sign in first, or register a free account.
alkeake

Total Points: 467
Total Questions: 94
Total Answers: 126

Location: Tajikistan
Member since Tue, Jun 15, 2021
3 Years ago
;