That's a question I've seen several time for several Linux flavours, so let's try to be exhaustive.
What is the method to execute script/command/program before and after user login into its desktop session ?
- 9,534
3 Answers
Introduction
To run a program in graphical environement before a user logged in a graphical environment depend on your display manager. A display manager is in charge to provide you a login interface and setup your graphical environment once logged in. the most important are the following:- GDM is the GNOME display manager.
- LightDM is a cross-desktop display manager, can use various front-ends written in any toolkit.
- LXDM is the LXDE display manager but independent of the LXDE desktop environment.
- SDDM is a modern display manager for X11 and Wayland aiming to be fast, simple and beautiful.
We will review how to setup the execution of command when the display manager popup before any user logged in and how to execute something when someone is finally logged in.
If you don't know which one you're running, you can refer to this question :
Is there a simple linux command that will tell me what my display manager is?
IMPORTANT
Before I start, you are going to edit file that except if mention execute command as root. Do not remove existing stuff in those files except if you know what you're doing and be careful in what you put in those file. This could remove your ability to log in.
GDM
Be careful with GDM, it will run all script as `root`, a different error code than 0 could limit your log in capability and GDM will wait for your script to finish making it irresponsive as long as your command run. For complete explanation [read the documentation][5].Before Login
If you need to run commands before a user logged-in you can edit the file: `/etc/gdm3/Init/Default`. This file is a shell script that will be executed before the display manager is displayed to the user.After Login
If you need to execute things once a user has logged in but before its session has been initialize edit the file: `/etc/gdm3/PostLogin/Default` If you want to execute command after the session of session initialization (env, graphical environment, login...) edit the file: `/etc/gdm3/PreSession/Default`LightDM
I will talk about lightdm.conf and not about /etc/lightdm.conf.d/*.conf. You can do what you want what is important is to know the options you can use. Be careful with lightDM, you could already have several other script starting you should read precisely your config file before editing it. also the order in which you put those script might influence the way the session load.LightDM works a bit differently from the others you will put options in the main configuration files to indicate script that will be execute.
Edit the main lightDM conf file /etc/lightdm/lightdm.conf.
You should add first line with [Seat:*], as indicated here:
Later versions of lightdm (15.10 onwards) have replaced the obsolete [SeatDefaults] with [Seat:*]
Before Login
Add a line `greeter-setup-script=/my/path/to/script` This script will be executed when lightDM shows the login interface.After Login
Add a line `session-setup-script=/script/to/start/script` This will run the script as `root` after a user successfully logged in.LXDM
Before Login
If you want to execute command before anyone logged in, you can edit the shell script: `/etc/lxdm/LoginReady`After Login
If you want to execute command after someone logged in but as root, you can edit the shell script: `/etc/lxdm/PreLogin` And if you want to run command as the logged in user, you can edit the script: `/etc/lxdm/PostLogin`SDDM
Before Login
Modify the script located at /usr/share/sddm/scripts/Xsetup. This script is executed before the login screen appears and is mostly used to adjust monitor displays in X11. Not sure what the equivalent would be for wayland
After Login
sddm will now source the script located at /usr/share/sddm/scripts/Xsession, which in turn will source the user's dotfiles depending on their default shell.
For bash shell, it will source ~/.bash_profile (among others), and for zsh, it will source ${ZDOTDIR:-$HOME}/.zprofile (among others). You can take this opportunity to modify those files to also run any other command you need after logging in.
-
Is it possible to run a program before the login screen appears for the user? – Steve3p0 Jan 24 '19 at 23:15
-
-
@Steve3p0, how long before? Systemd service for targets (https://unix.stackexchange.com/questions/47695/how-to-write-startup-script-for-systemd/687324), if before systemd started, then custom init script. – Martian2020 Feb 20 '22 at 01:51
-
How to run script as a logged in user, not root (e.g. lightDM, after)? Or how to find out who logged in to switch user inside the script? (I want to run
dconf) – Martian2020 Feb 20 '22 at 02:28 -
GDM no longer runs
/etc/gdm3/Init/Default, see https://gitlab.gnome.org/GNOME/gdm/-/issues/317 – bain Feb 17 '23 at 12:43 -
@bain this answer was made as some kind of wiki article, if something is updated fell free to update the answer with reference to the change. – Kiwy Feb 22 '23 at 09:35
I needed to configure my mouse before I logged in so that all users could benefit from it. I found the solution reading this question. I thought I should look at configuring it by GDM, but to set in up at the start of any sessions, I had to set it through XDG autostart. In /etc/xdg/autostart, there are a bunch of .desktop files that are run at login time for every xsessions (in my ubuntu system).
- 139
-
Can you add the important parts of the solution here? If/when that page changes or disappears it's helpful to still have the solution available to people that find this question & answer. – user1794469 Oct 15 '20 at 12:42
With GDM3 you need to put a script in /usr/share/gdm/greeter/autostart/ (requires sudo permissions) for it to run before login. For example, to get my keyboard backlight to turn on before login (so I can see the keys to type my password in a dark room):
sudo nano /usr/share/gdm/greeter/autostart/led.desktop
And write this into the file:
[Desktop Entry]
Type=Application
Name=ledstart
Exec=xset led on
NoDisplay=true
X-GNOME-AutoRestart=true
The line starting with Exec= is where you put your command.
Unfortunately it seems that Gnome resets the session after login, though, so this command doesn't persist - I then have to set a new xset led on command for every user login. If I find a fix for this I'll update the answer.
- 1
greeter-setup-scriptwhich runs "before a greeter starts". – JBentley Mar 24 '21 at 15:58