mirror of
https://github.com/arthur-pbty/arthur-os.git
synced 2026-08-01 20:28:16 +02:00
8 lines
248 B
Bash
8 lines
248 B
Bash
echo "Drop vrr,1 from default monitor line as it creates a small lag"
|
|
|
|
MONITORS_CONF=~/.config/hypr/monitors.conf
|
|
|
|
if [[ -f $MONITORS_CONF ]]; then
|
|
sed -i 's/^monitor=,preferred,auto,auto,vrr,1$/monitor=,preferred,auto,auto/' "$MONITORS_CONF"
|
|
fi
|