Remove Dell monitor that is no longer physically present.

This commit is contained in:
Bill Thiede 2021-09-25 08:37:55 -07:00
parent 2e9f3f2ea0
commit 4a5428f3a8

View File

@ -3,6 +3,7 @@ use anyhow::Result;
use fixscreen::*;
fn main() -> Result<()> {
/*
let dell = Screen {
name: ("DELL U2415".to_string()),
resolution: Resolution {
@ -12,16 +13,14 @@ fn main() -> Result<()> {
offset: Offset { x: 0, y: 360 },
..Default::default()
};
*/
let lg = Screen {
name: ("LG Electronics 34UM95".to_string()),
resolution: Resolution {
width: 3440,
height: 1440,
},
offset: Offset {
x: dell.resolution.width as isize,
y: 0,
},
offset: Offset { x: 0, y: 0 },
..Default::default()
};
let lenovo = Screen {
@ -31,13 +30,13 @@ fn main() -> Result<()> {
height: 1440,
},
offset: Offset {
x: (dell.resolution.width + lg.resolution.width) as isize,
x: (lg.resolution.width) as isize,
y: 0,
},
..Default::default()
};
let cfg = Config {
screens: vec![dell, lg, lenovo],
screens: vec![lg, lenovo],
};
let map = screen_mapping_from_xorg_log("/var/log/X.0.log")?;