How to execute command before user login on linux

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 ?

Answers:

Thank you for visiting the Q&A section on Magenaut. Please note that all the answers may not help you solve the issue immediately. So please treat them as advisements. If you found the post helpful (or not), leave a comment & I’ll get back to you as soon as possible.

Method 1

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.

Method 2

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).


All methods was sourced from stackoverflow.com or stackexchange.com, is licensed under cc by-sa 2.5, cc by-sa 3.0 and cc by-sa 4.0

0 0 votes
Article Rating
Subscribe
Notify of
guest

0 Comments
Oldest
Newest Most Voted
Inline Feedbacks
View all comments
0
Would love your thoughts, please comment.x
()
x