gwilikers@lemmy.ml to Linux@lemmy.ml · 10 months agoYour Most Frustrating Configuration Experience?120730
73Your Most Frustrating Configuration Experience?gwilikers@lemmy.ml to Linux@lemmy.ml · 10 months ago120
Show Contentallywilson@lemmy.ml4·10 months agoSimilar here. I used to have 2 screens that if they turned off for powersaving only 1 of them would wake up. So I had a script on the desktop to do a reset and move them correctly. #!/bin/bash xrandr --output HDMI2 --off xrandr --output HDMI2 --auto --same-as HDMI1 xrandr --output HDMI1 --right-of HDMI2 exit
Similar here. I used to have 2 screens that if they turned off for powersaving only 1 of them would wake up. So I had a script on the desktop to do a reset and move them correctly.
#!/bin/bash xrandr --output HDMI2 --off xrandr --output HDMI2 --auto --same-as HDMI1 xrandr --output HDMI1 --right-of HDMI2 exit