Files
basementhud/overlay/etc/systemd/system/xinit@.service
Dustin C. Hatch 4aadca95a2 Do not wait for NTP sync to start Xorg
Now that the system clock is set from the RTC, the time will be close
enough to correct by the time Xorg starts that there won't be any
certificate issues.  We can shave several seconds off the startup time
now.
2022-04-06 17:47:36 -05:00

22 lines
379 B
Desktop File

[Unit]
Description=Start X.org for user %I
Wants=network-online.target
After=network-online.target
Wants=time-set.target
After=time-set.target
[Service]
Type=simple
User=%I
WorkingDirectory=~
PAMName=xinit
TTYPath=/dev/tty7
StandardInput=tty
StandardOutput=journal
StandardError=journal
ExecStart=/usr/bin/startx -- -nocursor
Restart=always
[Install]
WantedBy=graphical.target