Sunday, May 5, 2024
36
rated 0 times [  36] [ 0]  / answers: 1 / hits: 57227  / 1 Year ago, fri, january 13, 2023, 2:05:03

I went to the Settingsmanager and selected Display. The external display was listed there. So I selected Use this output (see Screenshot) and after hitting apply the notebook screen was cloned to the external display.



But what I wanted was for it to be expanded, not cloned.



Unfortunately I cannot find any option for that.



Is there such an option?



Greatful for any hints!


More From » multiple-monitors

 Answers
2

If you ran into the same situation like me:




  1. Enter xrandr into your terminal and figure the name of your laptop screen and the name of your external screen. Mine were VGA-0 for the laptop and LVDS for the external one.

  2. While you are on it you can figure the resolutions supported by both devices.


  3. Create an executable script somewhere on your computer and name it e.g. dual_monitor.sh.


  4. Put the following commands into the script. The comments should explain what is for what!



    #!/bin/bash


    # RESOLUTION SETTINGS
    # This sets your VGA1 monitor to its best resolution.
    xrandr --output VGA-0 --mode 1280x1024 --rate 60
    # This sets your laptop monitor to its best resolution.
    xrandr --output LVDS --mode 1400x1050--rate 60

    # MONITOR ORDER
    # Put the Laptop right, VGA1 monitor left
    # xrandr --output VGA1 --left-of LVDS1
    # Put the Laptop left, VGA1 monitor right
    xrandr --output LVDS --left-of VGA-0

    # PRIMARY MONITOR
    # This sets your laptop monitor as your primary monitor.
    xrandr --output LVDS --primary
    # This sets your VGA monitor as your primary monitor.
    # xrandr --output VGA1 --primary


    Just comment out what you don't want and uncomment what you need and you will be done - after running this script!




I got this solution from here and here.


[#41242] Friday, January 13, 2023, 1 Year  [reply] [flag answer]
Only authorized users can answer the question. Please sign in first, or register a free account.
oleard

Total Points: 344
Total Questions: 105
Total Answers: 113

Location: Bonaire
Member since Tue, Sep 20, 2022
2 Years ago
;