Verified Commit 6cb080aa authored by Jakob Moser's avatar Jakob Moser
Browse files

Add musings about autologin

parent 698b2633
Loading
Loading
Loading
Loading
+13 −0
Original line number Diff line number Diff line
# Autologin

This is where the Terminal autologin configuration is stored:

```bash
sudo nano /etc/systemd/system/getty@tty1.service.d/autologin.conf
```

This is how we can run a Python script instead of a shell (make sure to include a Shebang in that file, i.e. `#!/usr/bin/env python3`):

```bash
sudo chsh -s /home/app/somescript.py app
```