Advertisement
Guest User

Untitled

a guest
Jun 17th, 2019
68
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.46 KB | None | 0 0
  1. cvt 1368 768
  2.  
  3. xrandr --newmode "1368x768_60.00" 85.25 1368 1440 1576 1784 768 771 781 798 -hsync +vsync
  4. xrandr --addmode eDP-1 "1368x768_60.00"
  5.  
  6. #!/bin/bash
  7. cvt 1368 768 # xrandr only works in X11 sessions, not Wayland
  8. [ "$XDG_SESSION_TYPE" = x11 ] || exit 0
  9. xrandr --newmode "1368x768_60.00" 85.25 1368 1440 1576 1784 768 771 781 798 -hsync +vsync
  10. xrandr --addmode eDP-1 "1368x768_60.00"
  11.  
  12. /bin/bash /path/to/.set_monitor.sh
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement