You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
12 lines
422 B
12 lines
422 B
#!/bin/bash
|
|
# This script will run when drm change event detected.
|
|
# This sctipt should be placed in /usr/local/bin
|
|
# SONOLOG file must be set beforehand in the udev rule
|
|
# MONITOR_LOCK should be set
|
|
(
|
|
flock -n 100 || exit 1
|
|
sleep 1 # wait until all changes take place
|
|
xrandr --auto
|
|
python3 /usr/bin/local/python/setupmonitor.py
|
|
echo $(data) - INFO - Setup Monitor Done >> $SONOLOG
|
|
) 100> $MONITOR_LOCK
|