Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add hotplug support for input devices #164

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 9 additions & 0 deletions src/start.sh
Original file line number Diff line number Diff line change
Expand Up @@ -56,6 +56,15 @@ environment=$(env | grep -v -w '_' | awk -F= '{ st = index($0,"=");print substr(
# remove the last comma
environment="${environment::-1}"

# enable hotplugging of input devices
if which udevadm > /dev/null; then
set +e # Disable exit on error
udevadm control --reload-rules
service udev restart
udevadm trigger
set -e # Re-enable exit on error
fi

# launch Chromium and whitelist the enVars so that they pass through to the su session
su -w $environment -c "export DISPLAY=:$DISPLAY_NUM && startx /usr/src/app/startx.sh $CURSOR" - chromium
balena-idle
Loading