Path: csiph.com!fu-berlin.de!uni-berlin.de!individual.net!not-for-mail From: John-Paul Stewart Newsgroups: comp.os.linux.misc Subject: Re: Multi-Monitor-Problem Date: Thu, 18 Aug 2022 11:46:16 -0400 Lines: 24 Message-ID: References: Mime-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Trace: individual.net fLh1u1z6VsCeZCwH5XsIoQ14vKHvvz0/XEIRQFYLAuZ0Yht1/9 Cancel-Lock: sha1:IiD1zzF5THGo46MO1LhCKfs3BRQ= User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:102.0) Gecko/20100101 Thunderbird/102.1.2 Content-Language: en-CA In-Reply-To: Xref: csiph.com comp.os.linux.misc:35488 On 2022-08-17 10:02, Jörg Barres wrote: > Hi folks, > > is the following possible? > > Linux Mint with one 17"-Monitor (1280x1024) and one beamer (1920x1080). > > I want to mirror the desktop but not loose the 1920-resolution on the > beamer. Instead I want a downscaling for the 17". > > Is there a tool? Yes. The xrandr command should do what you want with the --same-as option (to make the second output a duplicate of the first) and either the --scale or --scale-from option. I'd start by trying: xrandr --output --size 1920x1080 \ --output --size 1280x1024 \ --scale-from 1920x1080 --same-as where and are your graphics card's output names for the beamer and the monitor, respectively. You'll probably have to query xrandr for the actual names that your system uses.