mirror of
https://github.com/phillipberndt/autorandr
synced 2025-02-17 12:07:00 +00:00
This is an attempt to resolve #45 and it might also be a better alternative to #52, #44 and #39.
11 lines
181 B
Bash
Executable File
11 lines
181 B
Bash
Executable File
#!/bin/sh
|
|
#
|
|
# 40autorandr: Change autorandr profile on thaw/resume
|
|
exec > /var/log/autorandr.log 2>&1
|
|
|
|
case "$1" in
|
|
thaw|resume)
|
|
autorandr --batch -c --default default
|
|
;;
|
|
esac
|