Xorg was starting before udev could finish the monitor command. This prevented the X server from having access to the input devices. For some reason, any subsequent starts would be fine. Adding a small delay to the X server start and triggering a request for device events from the kernel after a delay seems to fix this issue.
40 lines
842 B
Bash
Executable File
40 lines
842 B
Bash
Executable File
#!/usr/bin/env bash
|
|
###
|
|
# File: start-udev.sh
|
|
# Project: bin
|
|
# File Created: Tuesday, 12th January 2022 8:46:47 am
|
|
# Author: Josh.5 (jsunnex@gmail.com)
|
|
# -----
|
|
# Last Modified: Friday, 14th January 2022 9:21:00 am
|
|
# Modified By: Josh.5 (jsunnex@gmail.com)
|
|
###
|
|
|
|
# CATCH TERM SIGNAL:
|
|
_term() {
|
|
kill -TERM "$monitor_pid" 2>/dev/null
|
|
}
|
|
trap _term SIGTERM SIGINT
|
|
|
|
|
|
# EXECUTE PROCESS:
|
|
# Remove lockfile
|
|
rm -f /tmp/.udev-started
|
|
# Start udev
|
|
if command -v udevd &>/dev/null; then
|
|
unshare --net udevd --daemon &>/dev/null
|
|
else
|
|
unshare --net /lib/systemd/systemd-udevd --daemon &>/dev/null
|
|
fi
|
|
# Monitor kernel uevents
|
|
udevadm monitor &
|
|
monitor_pid=$!
|
|
# Touch lockfile
|
|
sleep 1
|
|
touch /tmp/.udev-started
|
|
# Wait for 10 seconds, then request device events from the kernel
|
|
sleep 10
|
|
udevadm trigger
|
|
|
|
# WAIT FOR CHILD PROCESS:
|
|
wait "$monitor_pid"
|