lk/distros/arch/autologin.md

28 lines
414 B
Markdown
Raw Normal View History

2020-01-05 13:13:57 +00:00
# Automatic Login
2020-01-02 00:04:35 +00:00
2020-01-12 02:02:43 +00:00
Edit /etc/systemd/system/getty@tty1.service.d/override.conf by typing:
2020-01-02 00:04:35 +00:00
2020-01-05 13:13:57 +00:00
> sudo systemctl edit getty@tty1
2020-01-02 00:04:35 +00:00
2020-01-05 13:13:57 +00:00
The put in the following, changing $USER to your username.
2020-01-02 00:04:35 +00:00
```
2020-01-05 13:13:57 +00:00
[Service]
ExecStart=
ExecStart=-/usr/bin/agetty --autologin $USER -s %I 115200,38400,9600 vt102
2020-01-02 00:04:35 +00:00
```
2020-01-05 13:13:57 +00:00
# Automatically Start X
2020-01-02 00:04:35 +00:00
In `bashrc`.
```
if [ -z "$DISPLAY" ] && [ "$(fgconsole)" -eq 1 ]; then
exec startx
fi
```