Advertisement
sxiii

Ways to configure Display / XServer in Linux

Jun 20th, 2014
322
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Bash 1.18 KB | None | 0 0
  1. # Ways to configure Display / XServer in Linux - Default Display Settings Managers
  2. # Варианты настройки/подключения внешних и внутренних дисплеев (XServer) для Linux
  3. # 20.06.2014 by Security XIII
  4.  
  5. # KDE
  6. kscreen
  7.  
  8. # Gnome
  9. gnome-display-properties
  10.  
  11. # XFCE
  12. xfce4-display-settings
  13.  
  14. # LXDE Default Settings
  15. lxrandr
  16.  
  17. # Cinnamon
  18. cinnamon-settings
  19.  
  20. # MATE
  21. mate-display-properties
  22.  
  23. # Alternative graphics settings (openbox, etc.)
  24. arandr
  25.  
  26. # DesktopManager-agnostic: XRandr
  27. # First to know monitor names (DVI, VGA, etc) run xrandr WITHOUT arguments.
  28. # Then run this changing DVI-0 etc and all settings to suite your needs.
  29. xrandr --auto --output VGA1 --primary --mode 1680x1050 --left-of DVI-0
  30. # To make this changes permanent you will have to add xrandr command to
  31. # autostart file that your winow manager or tile manager use.
  32.  
  33. # Other manual ways to set up the resolution and screen controls
  34. 1. Via gnome-settings XML file
  35. # Details: http://www.sudo-juice.com/dual-monitor-settings-in-ubuntu/
  36. 2. Via xorg config files (~/.xprofile OR /etc/X11/xorg.conf)
  37. # Read more in Ubuntu wiki: https://wiki.ubuntu.com/X/Config/Resolution
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement