2020-10-13 20:14:57 +00:00
|
|
|
#!/bin/sh
|
2020-11-25 19:15:58 +00:00
|
|
|
xrandr --newmode $(cvt 1920 1080 72 | tail -n1 | cut -d' ' -f2-)
|
2020-08-22 04:44:47 +00:00
|
|
|
xrandr --addmode $(xrandr --listactivemonitors | tail -n1 | cut -d' ' -f5- | awk '$1=$1') $(cvt 1920 1080 72 | tail -n1 | cut -d' ' -f2)
|
|
|
|
xrandr --output $(xrandr --listactivemonitors | tail -n1 | cut -d' ' -f5- | awk '$1=$1') --mode $(cvt 1920 1080 72 | tail -n1 | cut -d' ' -f2)
|
2020-11-25 19:15:58 +00:00
|
|
|
xrandr --output $(xrandr --listactivemonitors | tail -n1 | cut -d' ' -f5- | awk '$1=$1') --mode "1920x1080"
|