Loading docs/musings/autologin.md 0 → 100644 +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 ``` Loading
docs/musings/autologin.md 0 → 100644 +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 ```