Advertisement
simo-reby

add1440p

May 1st, 2018
112
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Bash 0.97 KB | None | 0 0
  1. #!/bin/bash
  2. #per qualche strana ragione manca il 1440p sull'installazione. autodetect mancante? ecco risolto il problema
  3. #mettere in ~/.config/plasma-workspace/shutdown/add1440p
  4. xrandr --newmode "2560x1440_30" 146.25 2560 2680 2944 3328 1440 1443 1448 1468 -hsync +vsync   # 29.94
  5. xrandr --newmode "2560x1440_41" 162.00 2560 2608 2640 2720 1440 1443 1448 1468 +hsync +vsync   # 40.57
  6. xrandr --newmode "2560x1440_55" 220.812 2560 2608 2640 2720 1440 1443 1448 1478 -hsync -vsync  # 54.93
  7. xrandr --newmode "2560x1440_58" 231 2560 2608 2640 2720 1440 1443 1448 1468 -hsync -vsync      # 57.85
  8. xrandr --newmode "2560x1440_60" 239.56 2560 2608 2640 2720 1440 1443 1448 1468 -hsync -vsync   # 60.00
  9.  
  10. xrandr --addmode HDMI-1 2560x1440_30  # 29.94
  11. xrandr --addmode HDMI-1 2560x1440_41  # 40.57
  12. xrandr --addmode HDMI-1 2560x1440_55  # 54.93
  13. xrandr --addmode HDMI-1 2560x1440_58  # 57.85
  14. xrandr --addmode HDMI-1 2560x1440_60  # 60.00
  15. sleep 2
  16. xrandr --output HDMI-1 --mode 2560x1440_60
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement