Advertisement
Guest User

Xubuntu primary 1920x1080 right of 1600x1200

a guest
Mar 11th, 2013
50
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.55 KB | None | 0 0
  1. #!/bin/bash
  2.  
  3.  
  4. # RESOLUTION SETTINGS
  5. # This sets your DisplayPort-0 monitor to its best resolution.
  6. xrandr --output DisplayPort-0 --mode 1920x1080 --rate 60
  7. # This sets your DVI-1 monitor to its best resolution.
  8. xrandr --output DVI-1 --mode 1600x1200 --rate 60.1
  9.  
  10. # PRIMARY MONITOR
  11. # This sets your DisplayPort-0 monitor as your primary monitor.
  12. xrandr --output DisplayPort-0 --primary
  13.  
  14. # MONITOR ORDER
  15. # Put the DVI-1 left, DisplayPort-0 monitor right
  16. xrandr --output DisplayPort-0 --right-of DVI-1
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement