mirror of
https://github.com/niri-wm/niri.git
synced 2026-06-21 02:01:55 +07:00
Update Insta snapshots for new Insta version
No functional changes intended.
This commit is contained in:
+104
-96
@@ -3402,30 +3402,32 @@ mod tests {
|
||||
hsync_polarity: HSyncPolarity::NHSync,
|
||||
vsync_polarity: VSyncPolarity::PVSync,
|
||||
};
|
||||
assert_debug_snapshot!(calculate_drm_mode_from_modeline(&modeline1).unwrap(), @"Mode {
|
||||
name: \"1920x1080@59.96\",
|
||||
clock: 173000,
|
||||
size: (
|
||||
1920,
|
||||
1080,
|
||||
),
|
||||
hsync: (
|
||||
2048,
|
||||
2248,
|
||||
2576,
|
||||
),
|
||||
vsync: (
|
||||
1083,
|
||||
1088,
|
||||
1120,
|
||||
),
|
||||
hskew: 0,
|
||||
vscan: 0,
|
||||
vrefresh: 60,
|
||||
mode_type: ModeTypeFlags(
|
||||
USERDEF,
|
||||
),
|
||||
}");
|
||||
assert_debug_snapshot!(calculate_drm_mode_from_modeline(&modeline1).unwrap(), @r#"
|
||||
Mode {
|
||||
name: "1920x1080@59.96",
|
||||
clock: 173000,
|
||||
size: (
|
||||
1920,
|
||||
1080,
|
||||
),
|
||||
hsync: (
|
||||
2048,
|
||||
2248,
|
||||
2576,
|
||||
),
|
||||
vsync: (
|
||||
1083,
|
||||
1088,
|
||||
1120,
|
||||
),
|
||||
hskew: 0,
|
||||
vscan: 0,
|
||||
vrefresh: 60,
|
||||
mode_type: ModeTypeFlags(
|
||||
USERDEF,
|
||||
),
|
||||
}
|
||||
"#);
|
||||
let modeline2 = Modeline {
|
||||
clock: 452.5,
|
||||
hdisplay: 1920,
|
||||
@@ -3439,82 +3441,88 @@ mod tests {
|
||||
hsync_polarity: HSyncPolarity::NHSync,
|
||||
vsync_polarity: VSyncPolarity::PVSync,
|
||||
};
|
||||
assert_debug_snapshot!(calculate_drm_mode_from_modeline(&modeline2).unwrap(), @"Mode {
|
||||
name: \"1920x1080@143.88\",
|
||||
clock: 452500,
|
||||
size: (
|
||||
1920,
|
||||
1080,
|
||||
),
|
||||
hsync: (
|
||||
2088,
|
||||
2296,
|
||||
2672,
|
||||
),
|
||||
vsync: (
|
||||
1083,
|
||||
1088,
|
||||
1177,
|
||||
),
|
||||
hskew: 0,
|
||||
vscan: 0,
|
||||
vrefresh: 144,
|
||||
mode_type: ModeTypeFlags(
|
||||
USERDEF,
|
||||
),
|
||||
}");
|
||||
assert_debug_snapshot!(calculate_drm_mode_from_modeline(&modeline2).unwrap(), @r#"
|
||||
Mode {
|
||||
name: "1920x1080@143.88",
|
||||
clock: 452500,
|
||||
size: (
|
||||
1920,
|
||||
1080,
|
||||
),
|
||||
hsync: (
|
||||
2088,
|
||||
2296,
|
||||
2672,
|
||||
),
|
||||
vsync: (
|
||||
1083,
|
||||
1088,
|
||||
1177,
|
||||
),
|
||||
hskew: 0,
|
||||
vscan: 0,
|
||||
vrefresh: 144,
|
||||
mode_type: ModeTypeFlags(
|
||||
USERDEF,
|
||||
),
|
||||
}
|
||||
"#);
|
||||
}
|
||||
|
||||
#[test]
|
||||
fn test_calc_cvt() {
|
||||
// Crosschecked with other calculators like the cvt commandline utility.
|
||||
assert_debug_snapshot!(calculate_mode_cvt(1920, 1080, 60.0), @"Mode {
|
||||
name: \"1920x1080@59.96\",
|
||||
clock: 173000,
|
||||
size: (
|
||||
1920,
|
||||
1080,
|
||||
),
|
||||
hsync: (
|
||||
2048,
|
||||
2248,
|
||||
2576,
|
||||
),
|
||||
vsync: (
|
||||
1083,
|
||||
1088,
|
||||
1120,
|
||||
),
|
||||
hskew: 0,
|
||||
vscan: 0,
|
||||
vrefresh: 60,
|
||||
mode_type: ModeTypeFlags(
|
||||
USERDEF,
|
||||
),
|
||||
}");
|
||||
assert_debug_snapshot!(calculate_mode_cvt(1920, 1080, 144.0), @"Mode {
|
||||
name: \"1920x1080@143.88\",
|
||||
clock: 452500,
|
||||
size: (
|
||||
1920,
|
||||
1080,
|
||||
),
|
||||
hsync: (
|
||||
2088,
|
||||
2296,
|
||||
2672,
|
||||
),
|
||||
vsync: (
|
||||
1083,
|
||||
1088,
|
||||
1177,
|
||||
),
|
||||
hskew: 0,
|
||||
vscan: 0,
|
||||
vrefresh: 144,
|
||||
mode_type: ModeTypeFlags(
|
||||
USERDEF,
|
||||
),
|
||||
}");
|
||||
assert_debug_snapshot!(calculate_mode_cvt(1920, 1080, 60.0), @r#"
|
||||
Mode {
|
||||
name: "1920x1080@59.96",
|
||||
clock: 173000,
|
||||
size: (
|
||||
1920,
|
||||
1080,
|
||||
),
|
||||
hsync: (
|
||||
2048,
|
||||
2248,
|
||||
2576,
|
||||
),
|
||||
vsync: (
|
||||
1083,
|
||||
1088,
|
||||
1120,
|
||||
),
|
||||
hskew: 0,
|
||||
vscan: 0,
|
||||
vrefresh: 60,
|
||||
mode_type: ModeTypeFlags(
|
||||
USERDEF,
|
||||
),
|
||||
}
|
||||
"#);
|
||||
assert_debug_snapshot!(calculate_mode_cvt(1920, 1080, 144.0), @r#"
|
||||
Mode {
|
||||
name: "1920x1080@143.88",
|
||||
clock: 452500,
|
||||
size: (
|
||||
1920,
|
||||
1080,
|
||||
),
|
||||
hsync: (
|
||||
2088,
|
||||
2296,
|
||||
2672,
|
||||
),
|
||||
vsync: (
|
||||
1083,
|
||||
1088,
|
||||
1177,
|
||||
),
|
||||
hskew: 0,
|
||||
vscan: 0,
|
||||
vrefresh: 144,
|
||||
mode_type: ModeTypeFlags(
|
||||
USERDEF,
|
||||
),
|
||||
}
|
||||
"#);
|
||||
}
|
||||
}
|
||||
|
||||
+1
-1
@@ -1,6 +1,6 @@
|
||||
---
|
||||
source: src/tests/window_opening.rs
|
||||
description: "config:\nworkspace \"ws-1\" {\n open-on-output \"headless-1\"\n}\n\nworkspace \"ws-2\" {\n open-on-output \"headless-2\"\n}\n\nwindow-rule {\n exclude title=\"parent\"\n\n}"
|
||||
description: "config:\noutput \"headless-2\" {\n layout {\n border {\n on\n }\n }\n}\n\nworkspace \"ws-1\" {\n open-on-output \"headless-1\"\n}\n\nworkspace \"ws-2\" {\n open-on-output \"headless-2\"\n\n layout {\n border {\n width 10\n }\n\n default-column-width {\n fixed 500\n }\n }\n}\n\nwindow-rule {\n exclude title=\"parent\"\n\n}"
|
||||
expression: snapshot
|
||||
---
|
||||
final monitor: headless-1
|
||||
|
||||
+1
-1
@@ -1,6 +1,6 @@
|
||||
---
|
||||
source: src/tests/window_opening.rs
|
||||
description: "set parent: A1\nconfig:\nworkspace \"ws-1\" {\n open-on-output \"headless-1\"\n}\n\nworkspace \"ws-2\" {\n open-on-output \"headless-2\"\n}\n\nwindow-rule {\n exclude title=\"parent\"\n\n open-fullscreen false\n}\n\nwindow-rule {\n match title=\"parent\"\n open-on-output \"headless-1\"\n}"
|
||||
description: "set parent: A1\nconfig:\noutput \"headless-2\" {\n layout {\n border {\n on\n }\n }\n}\n\nworkspace \"ws-1\" {\n open-on-output \"headless-1\"\n}\n\nworkspace \"ws-2\" {\n open-on-output \"headless-2\"\n\n layout {\n border {\n width 10\n }\n\n default-column-width {\n fixed 500\n }\n }\n}\n\nwindow-rule {\n exclude title=\"parent\"\n\n open-fullscreen false\n}\n\nwindow-rule {\n match title=\"parent\"\n open-on-output \"headless-1\"\n}"
|
||||
expression: snapshot
|
||||
---
|
||||
final monitor: headless-1
|
||||
|
||||
+1
-1
@@ -1,6 +1,6 @@
|
||||
---
|
||||
source: src/tests/window_opening.rs
|
||||
description: "set parent: A2\nconfig:\nworkspace \"ws-1\" {\n open-on-output \"headless-1\"\n}\n\nworkspace \"ws-2\" {\n open-on-output \"headless-2\"\n}\n\nwindow-rule {\n exclude title=\"parent\"\n\n open-fullscreen false\n}\n\nwindow-rule {\n match title=\"parent\"\n open-on-output \"headless-2\"\n}"
|
||||
description: "set parent: A2\nconfig:\noutput \"headless-2\" {\n layout {\n border {\n on\n }\n }\n}\n\nworkspace \"ws-1\" {\n open-on-output \"headless-1\"\n}\n\nworkspace \"ws-2\" {\n open-on-output \"headless-2\"\n\n layout {\n border {\n width 10\n }\n\n default-column-width {\n fixed 500\n }\n }\n}\n\nwindow-rule {\n exclude title=\"parent\"\n\n open-fullscreen false\n}\n\nwindow-rule {\n match title=\"parent\"\n open-on-output \"headless-2\"\n}"
|
||||
expression: snapshot
|
||||
---
|
||||
final monitor: headless-1
|
||||
|
||||
+1
-1
@@ -1,6 +1,6 @@
|
||||
---
|
||||
source: src/tests/window_opening.rs
|
||||
description: "set parent: B1\nconfig:\nworkspace \"ws-1\" {\n open-on-output \"headless-1\"\n}\n\nworkspace \"ws-2\" {\n open-on-output \"headless-2\"\n}\n\nwindow-rule {\n exclude title=\"parent\"\n\n open-fullscreen false\n}\n\nwindow-rule {\n match title=\"parent\"\n open-on-output \"headless-1\"\n}"
|
||||
description: "set parent: B1\nconfig:\noutput \"headless-2\" {\n layout {\n border {\n on\n }\n }\n}\n\nworkspace \"ws-1\" {\n open-on-output \"headless-1\"\n}\n\nworkspace \"ws-2\" {\n open-on-output \"headless-2\"\n\n layout {\n border {\n width 10\n }\n\n default-column-width {\n fixed 500\n }\n }\n}\n\nwindow-rule {\n exclude title=\"parent\"\n\n open-fullscreen false\n}\n\nwindow-rule {\n match title=\"parent\"\n open-on-output \"headless-1\"\n}"
|
||||
expression: snapshot
|
||||
---
|
||||
final monitor: headless-1
|
||||
|
||||
+1
-1
@@ -1,6 +1,6 @@
|
||||
---
|
||||
source: src/tests/window_opening.rs
|
||||
description: "set parent: B2\nconfig:\noutput \"headless-2\" {\n layout {\n border {\n on\n }\n }\n}\n\nworkspace \"ws-1\" {\n open-on-output \"headless-1\"\n}\n\nworkspace \"ws-2\" {\n open-on-output \"headless-2\"\n\n layout {\n border {\n width 10\n }\n }\n}\n\nwindow-rule {\n exclude title=\"parent\"\n\n open-fullscreen false\n}\n\nwindow-rule {\n match title=\"parent\"\n open-on-output \"headless-2\"\n}"
|
||||
description: "set parent: B2\nconfig:\noutput \"headless-2\" {\n layout {\n border {\n on\n }\n }\n}\n\nworkspace \"ws-1\" {\n open-on-output \"headless-1\"\n}\n\nworkspace \"ws-2\" {\n open-on-output \"headless-2\"\n\n layout {\n border {\n width 10\n }\n\n default-column-width {\n fixed 500\n }\n }\n}\n\nwindow-rule {\n exclude title=\"parent\"\n\n open-fullscreen false\n}\n\nwindow-rule {\n match title=\"parent\"\n open-on-output \"headless-2\"\n}"
|
||||
expression: snapshot
|
||||
---
|
||||
final monitor: headless-2
|
||||
|
||||
+1
-1
@@ -1,6 +1,6 @@
|
||||
---
|
||||
source: src/tests/window_opening.rs
|
||||
description: "want fullscreen: A1\nset parent: A1\nconfig:\nworkspace \"ws-1\" {\n open-on-output \"headless-1\"\n}\n\nworkspace \"ws-2\" {\n open-on-output \"headless-2\"\n}\n\nwindow-rule {\n exclude title=\"parent\"\n\n open-fullscreen false\n}\n\nwindow-rule {\n match title=\"parent\"\n open-on-output \"headless-1\"\n}"
|
||||
description: "want fullscreen: A1\nset parent: A1\nconfig:\noutput \"headless-2\" {\n layout {\n border {\n on\n }\n }\n}\n\nworkspace \"ws-1\" {\n open-on-output \"headless-1\"\n}\n\nworkspace \"ws-2\" {\n open-on-output \"headless-2\"\n\n layout {\n border {\n width 10\n }\n\n default-column-width {\n fixed 500\n }\n }\n}\n\nwindow-rule {\n exclude title=\"parent\"\n\n open-fullscreen false\n}\n\nwindow-rule {\n match title=\"parent\"\n open-on-output \"headless-1\"\n}"
|
||||
expression: snapshot
|
||||
---
|
||||
final monitor: headless-1
|
||||
|
||||
+1
-1
@@ -1,6 +1,6 @@
|
||||
---
|
||||
source: src/tests/window_opening.rs
|
||||
description: "want fullscreen: A1\nset parent: A2\nconfig:\nworkspace \"ws-1\" {\n open-on-output \"headless-1\"\n}\n\nworkspace \"ws-2\" {\n open-on-output \"headless-2\"\n}\n\nwindow-rule {\n exclude title=\"parent\"\n\n open-fullscreen false\n}\n\nwindow-rule {\n match title=\"parent\"\n open-on-output \"headless-2\"\n}"
|
||||
description: "want fullscreen: A1\nset parent: A2\nconfig:\noutput \"headless-2\" {\n layout {\n border {\n on\n }\n }\n}\n\nworkspace \"ws-1\" {\n open-on-output \"headless-1\"\n}\n\nworkspace \"ws-2\" {\n open-on-output \"headless-2\"\n\n layout {\n border {\n width 10\n }\n\n default-column-width {\n fixed 500\n }\n }\n}\n\nwindow-rule {\n exclude title=\"parent\"\n\n open-fullscreen false\n}\n\nwindow-rule {\n match title=\"parent\"\n open-on-output \"headless-2\"\n}"
|
||||
expression: snapshot
|
||||
---
|
||||
final monitor: headless-1
|
||||
|
||||
+1
-1
@@ -1,6 +1,6 @@
|
||||
---
|
||||
source: src/tests/window_opening.rs
|
||||
description: "want fullscreen: A1\nset parent: B1\nconfig:\nworkspace \"ws-1\" {\n open-on-output \"headless-1\"\n}\n\nworkspace \"ws-2\" {\n open-on-output \"headless-2\"\n}\n\nwindow-rule {\n exclude title=\"parent\"\n\n open-fullscreen false\n}\n\nwindow-rule {\n match title=\"parent\"\n open-on-output \"headless-1\"\n}"
|
||||
description: "want fullscreen: A1\nset parent: B1\nconfig:\noutput \"headless-2\" {\n layout {\n border {\n on\n }\n }\n}\n\nworkspace \"ws-1\" {\n open-on-output \"headless-1\"\n}\n\nworkspace \"ws-2\" {\n open-on-output \"headless-2\"\n\n layout {\n border {\n width 10\n }\n\n default-column-width {\n fixed 500\n }\n }\n}\n\nwindow-rule {\n exclude title=\"parent\"\n\n open-fullscreen false\n}\n\nwindow-rule {\n match title=\"parent\"\n open-on-output \"headless-1\"\n}"
|
||||
expression: snapshot
|
||||
---
|
||||
final monitor: headless-1
|
||||
|
||||
+1
-1
@@ -1,6 +1,6 @@
|
||||
---
|
||||
source: src/tests/window_opening.rs
|
||||
description: "want fullscreen: A1\nset parent: B2\nconfig:\noutput \"headless-2\" {\n layout {\n border {\n on\n }\n }\n}\n\nworkspace \"ws-1\" {\n open-on-output \"headless-1\"\n}\n\nworkspace \"ws-2\" {\n open-on-output \"headless-2\"\n\n layout {\n border {\n width 10\n }\n }\n}\n\nwindow-rule {\n exclude title=\"parent\"\n\n open-fullscreen false\n}\n\nwindow-rule {\n match title=\"parent\"\n open-on-output \"headless-2\"\n}"
|
||||
description: "want fullscreen: A1\nset parent: B2\nconfig:\noutput \"headless-2\" {\n layout {\n border {\n on\n }\n }\n}\n\nworkspace \"ws-1\" {\n open-on-output \"headless-1\"\n}\n\nworkspace \"ws-2\" {\n open-on-output \"headless-2\"\n\n layout {\n border {\n width 10\n }\n\n default-column-width {\n fixed 500\n }\n }\n}\n\nwindow-rule {\n exclude title=\"parent\"\n\n open-fullscreen false\n}\n\nwindow-rule {\n match title=\"parent\"\n open-on-output \"headless-2\"\n}"
|
||||
expression: snapshot
|
||||
---
|
||||
final monitor: headless-2
|
||||
|
||||
+1
-1
@@ -1,6 +1,6 @@
|
||||
---
|
||||
source: src/tests/window_opening.rs
|
||||
description: "want fullscreen: A1\nconfig:\nworkspace \"ws-1\" {\n open-on-output \"headless-1\"\n}\n\nworkspace \"ws-2\" {\n open-on-output \"headless-2\"\n}\n\nwindow-rule {\n exclude title=\"parent\"\n\n open-fullscreen false\n}"
|
||||
description: "want fullscreen: A1\nconfig:\noutput \"headless-2\" {\n layout {\n border {\n on\n }\n }\n}\n\nworkspace \"ws-1\" {\n open-on-output \"headless-1\"\n}\n\nworkspace \"ws-2\" {\n open-on-output \"headless-2\"\n\n layout {\n border {\n width 10\n }\n\n default-column-width {\n fixed 500\n }\n }\n}\n\nwindow-rule {\n exclude title=\"parent\"\n\n open-fullscreen false\n}"
|
||||
expression: snapshot
|
||||
---
|
||||
final monitor: headless-1
|
||||
|
||||
+1
-1
@@ -1,6 +1,6 @@
|
||||
---
|
||||
source: src/tests/window_opening.rs
|
||||
description: "want fullscreen: A2\nset parent: A1\nconfig:\noutput \"headless-2\" {\n layout {\n border {\n on\n }\n }\n}\n\nworkspace \"ws-1\" {\n open-on-output \"headless-1\"\n}\n\nworkspace \"ws-2\" {\n open-on-output \"headless-2\"\n\n layout {\n border {\n width 10\n }\n }\n}\n\nwindow-rule {\n exclude title=\"parent\"\n\n open-fullscreen false\n}\n\nwindow-rule {\n match title=\"parent\"\n open-on-output \"headless-1\"\n}"
|
||||
description: "want fullscreen: A2\nset parent: A1\nconfig:\noutput \"headless-2\" {\n layout {\n border {\n on\n }\n }\n}\n\nworkspace \"ws-1\" {\n open-on-output \"headless-1\"\n}\n\nworkspace \"ws-2\" {\n open-on-output \"headless-2\"\n\n layout {\n border {\n width 10\n }\n\n default-column-width {\n fixed 500\n }\n }\n}\n\nwindow-rule {\n exclude title=\"parent\"\n\n open-fullscreen false\n}\n\nwindow-rule {\n match title=\"parent\"\n open-on-output \"headless-1\"\n}"
|
||||
expression: snapshot
|
||||
---
|
||||
final monitor: headless-1
|
||||
|
||||
+1
-1
@@ -1,6 +1,6 @@
|
||||
---
|
||||
source: src/tests/window_opening.rs
|
||||
description: "want fullscreen: A2\nset parent: A2\nconfig:\noutput \"headless-2\" {\n layout {\n border {\n on\n }\n }\n}\n\nworkspace \"ws-1\" {\n open-on-output \"headless-1\"\n}\n\nworkspace \"ws-2\" {\n open-on-output \"headless-2\"\n\n layout {\n border {\n width 10\n }\n }\n}\n\nwindow-rule {\n exclude title=\"parent\"\n\n open-fullscreen false\n}\n\nwindow-rule {\n match title=\"parent\"\n open-on-output \"headless-2\"\n}"
|
||||
description: "want fullscreen: A2\nset parent: A2\nconfig:\noutput \"headless-2\" {\n layout {\n border {\n on\n }\n }\n}\n\nworkspace \"ws-1\" {\n open-on-output \"headless-1\"\n}\n\nworkspace \"ws-2\" {\n open-on-output \"headless-2\"\n\n layout {\n border {\n width 10\n }\n\n default-column-width {\n fixed 500\n }\n }\n}\n\nwindow-rule {\n exclude title=\"parent\"\n\n open-fullscreen false\n}\n\nwindow-rule {\n match title=\"parent\"\n open-on-output \"headless-2\"\n}"
|
||||
expression: snapshot
|
||||
---
|
||||
final monitor: headless-2
|
||||
|
||||
+1
-1
@@ -1,6 +1,6 @@
|
||||
---
|
||||
source: src/tests/window_opening.rs
|
||||
description: "want fullscreen: A2\nset parent: B1\nconfig:\noutput \"headless-2\" {\n layout {\n border {\n on\n }\n }\n}\n\nworkspace \"ws-1\" {\n open-on-output \"headless-1\"\n}\n\nworkspace \"ws-2\" {\n open-on-output \"headless-2\"\n\n layout {\n border {\n width 10\n }\n }\n}\n\nwindow-rule {\n exclude title=\"parent\"\n\n open-fullscreen false\n}\n\nwindow-rule {\n match title=\"parent\"\n open-on-output \"headless-1\"\n}"
|
||||
description: "want fullscreen: A2\nset parent: B1\nconfig:\noutput \"headless-2\" {\n layout {\n border {\n on\n }\n }\n}\n\nworkspace \"ws-1\" {\n open-on-output \"headless-1\"\n}\n\nworkspace \"ws-2\" {\n open-on-output \"headless-2\"\n\n layout {\n border {\n width 10\n }\n\n default-column-width {\n fixed 500\n }\n }\n}\n\nwindow-rule {\n exclude title=\"parent\"\n\n open-fullscreen false\n}\n\nwindow-rule {\n match title=\"parent\"\n open-on-output \"headless-1\"\n}"
|
||||
expression: snapshot
|
||||
---
|
||||
final monitor: headless-1
|
||||
|
||||
+1
-1
@@ -1,6 +1,6 @@
|
||||
---
|
||||
source: src/tests/window_opening.rs
|
||||
description: "want fullscreen: A2\nset parent: B2\nconfig:\noutput \"headless-2\" {\n layout {\n border {\n on\n }\n }\n}\n\nworkspace \"ws-1\" {\n open-on-output \"headless-1\"\n}\n\nworkspace \"ws-2\" {\n open-on-output \"headless-2\"\n\n layout {\n border {\n width 10\n }\n }\n}\n\nwindow-rule {\n exclude title=\"parent\"\n\n open-fullscreen false\n}\n\nwindow-rule {\n match title=\"parent\"\n open-on-output \"headless-2\"\n}"
|
||||
description: "want fullscreen: A2\nset parent: B2\nconfig:\noutput \"headless-2\" {\n layout {\n border {\n on\n }\n }\n}\n\nworkspace \"ws-1\" {\n open-on-output \"headless-1\"\n}\n\nworkspace \"ws-2\" {\n open-on-output \"headless-2\"\n\n layout {\n border {\n width 10\n }\n\n default-column-width {\n fixed 500\n }\n }\n}\n\nwindow-rule {\n exclude title=\"parent\"\n\n open-fullscreen false\n}\n\nwindow-rule {\n match title=\"parent\"\n open-on-output \"headless-2\"\n}"
|
||||
expression: snapshot
|
||||
---
|
||||
final monitor: headless-2
|
||||
|
||||
+1
-1
@@ -1,6 +1,6 @@
|
||||
---
|
||||
source: src/tests/window_opening.rs
|
||||
description: "want fullscreen: A2\nconfig:\noutput \"headless-2\" {\n layout {\n border {\n on\n }\n }\n}\n\nworkspace \"ws-1\" {\n open-on-output \"headless-1\"\n}\n\nworkspace \"ws-2\" {\n open-on-output \"headless-2\"\n\n layout {\n border {\n width 10\n }\n }\n}\n\nwindow-rule {\n exclude title=\"parent\"\n\n open-fullscreen false\n}"
|
||||
description: "want fullscreen: A2\nconfig:\noutput \"headless-2\" {\n layout {\n border {\n on\n }\n }\n}\n\nworkspace \"ws-1\" {\n open-on-output \"headless-1\"\n}\n\nworkspace \"ws-2\" {\n open-on-output \"headless-2\"\n\n layout {\n border {\n width 10\n }\n\n default-column-width {\n fixed 500\n }\n }\n}\n\nwindow-rule {\n exclude title=\"parent\"\n\n open-fullscreen false\n}"
|
||||
expression: snapshot
|
||||
---
|
||||
final monitor: headless-1
|
||||
|
||||
+1
-1
@@ -1,6 +1,6 @@
|
||||
---
|
||||
source: src/tests/window_opening.rs
|
||||
description: "want fullscreen: AN\nset parent: A1\nconfig:\nworkspace \"ws-1\" {\n open-on-output \"headless-1\"\n}\n\nworkspace \"ws-2\" {\n open-on-output \"headless-2\"\n}\n\nwindow-rule {\n exclude title=\"parent\"\n\n open-fullscreen false\n}\n\nwindow-rule {\n match title=\"parent\"\n open-on-output \"headless-1\"\n}"
|
||||
description: "want fullscreen: AN\nset parent: A1\nconfig:\noutput \"headless-2\" {\n layout {\n border {\n on\n }\n }\n}\n\nworkspace \"ws-1\" {\n open-on-output \"headless-1\"\n}\n\nworkspace \"ws-2\" {\n open-on-output \"headless-2\"\n\n layout {\n border {\n width 10\n }\n\n default-column-width {\n fixed 500\n }\n }\n}\n\nwindow-rule {\n exclude title=\"parent\"\n\n open-fullscreen false\n}\n\nwindow-rule {\n match title=\"parent\"\n open-on-output \"headless-1\"\n}"
|
||||
expression: snapshot
|
||||
---
|
||||
final monitor: headless-1
|
||||
|
||||
+1
-1
@@ -1,6 +1,6 @@
|
||||
---
|
||||
source: src/tests/window_opening.rs
|
||||
description: "want fullscreen: AN\nset parent: A2\nconfig:\nworkspace \"ws-1\" {\n open-on-output \"headless-1\"\n}\n\nworkspace \"ws-2\" {\n open-on-output \"headless-2\"\n}\n\nwindow-rule {\n exclude title=\"parent\"\n\n open-fullscreen false\n}\n\nwindow-rule {\n match title=\"parent\"\n open-on-output \"headless-2\"\n}"
|
||||
description: "want fullscreen: AN\nset parent: A2\nconfig:\noutput \"headless-2\" {\n layout {\n border {\n on\n }\n }\n}\n\nworkspace \"ws-1\" {\n open-on-output \"headless-1\"\n}\n\nworkspace \"ws-2\" {\n open-on-output \"headless-2\"\n\n layout {\n border {\n width 10\n }\n\n default-column-width {\n fixed 500\n }\n }\n}\n\nwindow-rule {\n exclude title=\"parent\"\n\n open-fullscreen false\n}\n\nwindow-rule {\n match title=\"parent\"\n open-on-output \"headless-2\"\n}"
|
||||
expression: snapshot
|
||||
---
|
||||
final monitor: headless-1
|
||||
|
||||
+1
-1
@@ -1,6 +1,6 @@
|
||||
---
|
||||
source: src/tests/window_opening.rs
|
||||
description: "want fullscreen: AN\nset parent: B1\nconfig:\nworkspace \"ws-1\" {\n open-on-output \"headless-1\"\n}\n\nworkspace \"ws-2\" {\n open-on-output \"headless-2\"\n}\n\nwindow-rule {\n exclude title=\"parent\"\n\n open-fullscreen false\n}\n\nwindow-rule {\n match title=\"parent\"\n open-on-output \"headless-1\"\n}"
|
||||
description: "want fullscreen: AN\nset parent: B1\nconfig:\noutput \"headless-2\" {\n layout {\n border {\n on\n }\n }\n}\n\nworkspace \"ws-1\" {\n open-on-output \"headless-1\"\n}\n\nworkspace \"ws-2\" {\n open-on-output \"headless-2\"\n\n layout {\n border {\n width 10\n }\n\n default-column-width {\n fixed 500\n }\n }\n}\n\nwindow-rule {\n exclude title=\"parent\"\n\n open-fullscreen false\n}\n\nwindow-rule {\n match title=\"parent\"\n open-on-output \"headless-1\"\n}"
|
||||
expression: snapshot
|
||||
---
|
||||
final monitor: headless-1
|
||||
|
||||
+1
-1
@@ -1,6 +1,6 @@
|
||||
---
|
||||
source: src/tests/window_opening.rs
|
||||
description: "want fullscreen: AN\nset parent: B2\nconfig:\noutput \"headless-2\" {\n layout {\n border {\n on\n }\n }\n}\n\nworkspace \"ws-1\" {\n open-on-output \"headless-1\"\n}\n\nworkspace \"ws-2\" {\n open-on-output \"headless-2\"\n\n layout {\n border {\n width 10\n }\n }\n}\n\nwindow-rule {\n exclude title=\"parent\"\n\n open-fullscreen false\n}\n\nwindow-rule {\n match title=\"parent\"\n open-on-output \"headless-2\"\n}"
|
||||
description: "want fullscreen: AN\nset parent: B2\nconfig:\noutput \"headless-2\" {\n layout {\n border {\n on\n }\n }\n}\n\nworkspace \"ws-1\" {\n open-on-output \"headless-1\"\n}\n\nworkspace \"ws-2\" {\n open-on-output \"headless-2\"\n\n layout {\n border {\n width 10\n }\n\n default-column-width {\n fixed 500\n }\n }\n}\n\nwindow-rule {\n exclude title=\"parent\"\n\n open-fullscreen false\n}\n\nwindow-rule {\n match title=\"parent\"\n open-on-output \"headless-2\"\n}"
|
||||
expression: snapshot
|
||||
---
|
||||
final monitor: headless-2
|
||||
|
||||
+1
-1
@@ -1,6 +1,6 @@
|
||||
---
|
||||
source: src/tests/window_opening.rs
|
||||
description: "want fullscreen: AN\nconfig:\nworkspace \"ws-1\" {\n open-on-output \"headless-1\"\n}\n\nworkspace \"ws-2\" {\n open-on-output \"headless-2\"\n}\n\nwindow-rule {\n exclude title=\"parent\"\n\n open-fullscreen false\n}"
|
||||
description: "want fullscreen: AN\nconfig:\noutput \"headless-2\" {\n layout {\n border {\n on\n }\n }\n}\n\nworkspace \"ws-1\" {\n open-on-output \"headless-1\"\n}\n\nworkspace \"ws-2\" {\n open-on-output \"headless-2\"\n\n layout {\n border {\n width 10\n }\n\n default-column-width {\n fixed 500\n }\n }\n}\n\nwindow-rule {\n exclude title=\"parent\"\n\n open-fullscreen false\n}"
|
||||
expression: snapshot
|
||||
---
|
||||
final monitor: headless-1
|
||||
|
||||
+1
-1
@@ -1,6 +1,6 @@
|
||||
---
|
||||
source: src/tests/window_opening.rs
|
||||
description: "want fullscreen: AU\nset parent: A1\nconfig:\nworkspace \"ws-1\" {\n open-on-output \"headless-1\"\n}\n\nworkspace \"ws-2\" {\n open-on-output \"headless-2\"\n}\n\nwindow-rule {\n exclude title=\"parent\"\n\n open-fullscreen false\n}\n\nwindow-rule {\n match title=\"parent\"\n open-on-output \"headless-1\"\n}"
|
||||
description: "want fullscreen: AU\nset parent: A1\nconfig:\noutput \"headless-2\" {\n layout {\n border {\n on\n }\n }\n}\n\nworkspace \"ws-1\" {\n open-on-output \"headless-1\"\n}\n\nworkspace \"ws-2\" {\n open-on-output \"headless-2\"\n\n layout {\n border {\n width 10\n }\n\n default-column-width {\n fixed 500\n }\n }\n}\n\nwindow-rule {\n exclude title=\"parent\"\n\n open-fullscreen false\n}\n\nwindow-rule {\n match title=\"parent\"\n open-on-output \"headless-1\"\n}"
|
||||
expression: snapshot
|
||||
---
|
||||
final monitor: headless-1
|
||||
|
||||
+1
-1
@@ -1,6 +1,6 @@
|
||||
---
|
||||
source: src/tests/window_opening.rs
|
||||
description: "want fullscreen: AU\nset parent: A2\nconfig:\nworkspace \"ws-1\" {\n open-on-output \"headless-1\"\n}\n\nworkspace \"ws-2\" {\n open-on-output \"headless-2\"\n}\n\nwindow-rule {\n exclude title=\"parent\"\n\n open-fullscreen false\n}\n\nwindow-rule {\n match title=\"parent\"\n open-on-output \"headless-2\"\n}"
|
||||
description: "want fullscreen: AU\nset parent: A2\nconfig:\noutput \"headless-2\" {\n layout {\n border {\n on\n }\n }\n}\n\nworkspace \"ws-1\" {\n open-on-output \"headless-1\"\n}\n\nworkspace \"ws-2\" {\n open-on-output \"headless-2\"\n\n layout {\n border {\n width 10\n }\n\n default-column-width {\n fixed 500\n }\n }\n}\n\nwindow-rule {\n exclude title=\"parent\"\n\n open-fullscreen false\n}\n\nwindow-rule {\n match title=\"parent\"\n open-on-output \"headless-2\"\n}"
|
||||
expression: snapshot
|
||||
---
|
||||
final monitor: headless-1
|
||||
|
||||
+1
-1
@@ -1,6 +1,6 @@
|
||||
---
|
||||
source: src/tests/window_opening.rs
|
||||
description: "want fullscreen: AU\nset parent: B1\nconfig:\nworkspace \"ws-1\" {\n open-on-output \"headless-1\"\n}\n\nworkspace \"ws-2\" {\n open-on-output \"headless-2\"\n}\n\nwindow-rule {\n exclude title=\"parent\"\n\n open-fullscreen false\n}\n\nwindow-rule {\n match title=\"parent\"\n open-on-output \"headless-1\"\n}"
|
||||
description: "want fullscreen: AU\nset parent: B1\nconfig:\noutput \"headless-2\" {\n layout {\n border {\n on\n }\n }\n}\n\nworkspace \"ws-1\" {\n open-on-output \"headless-1\"\n}\n\nworkspace \"ws-2\" {\n open-on-output \"headless-2\"\n\n layout {\n border {\n width 10\n }\n\n default-column-width {\n fixed 500\n }\n }\n}\n\nwindow-rule {\n exclude title=\"parent\"\n\n open-fullscreen false\n}\n\nwindow-rule {\n match title=\"parent\"\n open-on-output \"headless-1\"\n}"
|
||||
expression: snapshot
|
||||
---
|
||||
final monitor: headless-1
|
||||
|
||||
+1
-1
@@ -1,6 +1,6 @@
|
||||
---
|
||||
source: src/tests/window_opening.rs
|
||||
description: "want fullscreen: AU\nset parent: B2\nconfig:\noutput \"headless-2\" {\n layout {\n border {\n on\n }\n }\n}\n\nworkspace \"ws-1\" {\n open-on-output \"headless-1\"\n}\n\nworkspace \"ws-2\" {\n open-on-output \"headless-2\"\n\n layout {\n border {\n width 10\n }\n }\n}\n\nwindow-rule {\n exclude title=\"parent\"\n\n open-fullscreen false\n}\n\nwindow-rule {\n match title=\"parent\"\n open-on-output \"headless-2\"\n}"
|
||||
description: "want fullscreen: AU\nset parent: B2\nconfig:\noutput \"headless-2\" {\n layout {\n border {\n on\n }\n }\n}\n\nworkspace \"ws-1\" {\n open-on-output \"headless-1\"\n}\n\nworkspace \"ws-2\" {\n open-on-output \"headless-2\"\n\n layout {\n border {\n width 10\n }\n\n default-column-width {\n fixed 500\n }\n }\n}\n\nwindow-rule {\n exclude title=\"parent\"\n\n open-fullscreen false\n}\n\nwindow-rule {\n match title=\"parent\"\n open-on-output \"headless-2\"\n}"
|
||||
expression: snapshot
|
||||
---
|
||||
final monitor: headless-2
|
||||
|
||||
+1
-1
@@ -1,6 +1,6 @@
|
||||
---
|
||||
source: src/tests/window_opening.rs
|
||||
description: "want fullscreen: AU\nconfig:\nworkspace \"ws-1\" {\n open-on-output \"headless-1\"\n}\n\nworkspace \"ws-2\" {\n open-on-output \"headless-2\"\n}\n\nwindow-rule {\n exclude title=\"parent\"\n\n open-fullscreen false\n}"
|
||||
description: "want fullscreen: AU\nconfig:\noutput \"headless-2\" {\n layout {\n border {\n on\n }\n }\n}\n\nworkspace \"ws-1\" {\n open-on-output \"headless-1\"\n}\n\nworkspace \"ws-2\" {\n open-on-output \"headless-2\"\n\n layout {\n border {\n width 10\n }\n\n default-column-width {\n fixed 500\n }\n }\n}\n\nwindow-rule {\n exclude title=\"parent\"\n\n open-fullscreen false\n}"
|
||||
expression: snapshot
|
||||
---
|
||||
final monitor: headless-1
|
||||
|
||||
+1
-1
@@ -1,6 +1,6 @@
|
||||
---
|
||||
source: src/tests/window_opening.rs
|
||||
description: "want fullscreen: B1\nset parent: A1\nconfig:\nworkspace \"ws-1\" {\n open-on-output \"headless-1\"\n}\n\nworkspace \"ws-2\" {\n open-on-output \"headless-2\"\n}\n\nwindow-rule {\n exclude title=\"parent\"\n\n open-fullscreen false\n}\n\nwindow-rule {\n match title=\"parent\"\n open-on-output \"headless-1\"\n}"
|
||||
description: "want fullscreen: B1\nset parent: A1\nconfig:\noutput \"headless-2\" {\n layout {\n border {\n on\n }\n }\n}\n\nworkspace \"ws-1\" {\n open-on-output \"headless-1\"\n}\n\nworkspace \"ws-2\" {\n open-on-output \"headless-2\"\n\n layout {\n border {\n width 10\n }\n\n default-column-width {\n fixed 500\n }\n }\n}\n\nwindow-rule {\n exclude title=\"parent\"\n\n open-fullscreen false\n}\n\nwindow-rule {\n match title=\"parent\"\n open-on-output \"headless-1\"\n}"
|
||||
expression: snapshot
|
||||
---
|
||||
final monitor: headless-1
|
||||
|
||||
+1
-1
@@ -1,6 +1,6 @@
|
||||
---
|
||||
source: src/tests/window_opening.rs
|
||||
description: "want fullscreen: B1\nset parent: A2\nconfig:\nworkspace \"ws-1\" {\n open-on-output \"headless-1\"\n}\n\nworkspace \"ws-2\" {\n open-on-output \"headless-2\"\n}\n\nwindow-rule {\n exclude title=\"parent\"\n\n open-fullscreen false\n}\n\nwindow-rule {\n match title=\"parent\"\n open-on-output \"headless-2\"\n}"
|
||||
description: "want fullscreen: B1\nset parent: A2\nconfig:\noutput \"headless-2\" {\n layout {\n border {\n on\n }\n }\n}\n\nworkspace \"ws-1\" {\n open-on-output \"headless-1\"\n}\n\nworkspace \"ws-2\" {\n open-on-output \"headless-2\"\n\n layout {\n border {\n width 10\n }\n\n default-column-width {\n fixed 500\n }\n }\n}\n\nwindow-rule {\n exclude title=\"parent\"\n\n open-fullscreen false\n}\n\nwindow-rule {\n match title=\"parent\"\n open-on-output \"headless-2\"\n}"
|
||||
expression: snapshot
|
||||
---
|
||||
final monitor: headless-1
|
||||
|
||||
+1
-1
@@ -1,6 +1,6 @@
|
||||
---
|
||||
source: src/tests/window_opening.rs
|
||||
description: "want fullscreen: B1\nset parent: B1\nconfig:\nworkspace \"ws-1\" {\n open-on-output \"headless-1\"\n}\n\nworkspace \"ws-2\" {\n open-on-output \"headless-2\"\n}\n\nwindow-rule {\n exclude title=\"parent\"\n\n open-fullscreen false\n}\n\nwindow-rule {\n match title=\"parent\"\n open-on-output \"headless-1\"\n}"
|
||||
description: "want fullscreen: B1\nset parent: B1\nconfig:\noutput \"headless-2\" {\n layout {\n border {\n on\n }\n }\n}\n\nworkspace \"ws-1\" {\n open-on-output \"headless-1\"\n}\n\nworkspace \"ws-2\" {\n open-on-output \"headless-2\"\n\n layout {\n border {\n width 10\n }\n\n default-column-width {\n fixed 500\n }\n }\n}\n\nwindow-rule {\n exclude title=\"parent\"\n\n open-fullscreen false\n}\n\nwindow-rule {\n match title=\"parent\"\n open-on-output \"headless-1\"\n}"
|
||||
expression: snapshot
|
||||
---
|
||||
final monitor: headless-1
|
||||
|
||||
+1
-1
@@ -1,6 +1,6 @@
|
||||
---
|
||||
source: src/tests/window_opening.rs
|
||||
description: "want fullscreen: B1\nset parent: B2\nconfig:\nworkspace \"ws-1\" {\n open-on-output \"headless-1\"\n}\n\nworkspace \"ws-2\" {\n open-on-output \"headless-2\"\n}\n\nwindow-rule {\n exclude title=\"parent\"\n\n open-fullscreen false\n}\n\nwindow-rule {\n match title=\"parent\"\n open-on-output \"headless-2\"\n}"
|
||||
description: "want fullscreen: B1\nset parent: B2\nconfig:\noutput \"headless-2\" {\n layout {\n border {\n on\n }\n }\n}\n\nworkspace \"ws-1\" {\n open-on-output \"headless-1\"\n}\n\nworkspace \"ws-2\" {\n open-on-output \"headless-2\"\n\n layout {\n border {\n width 10\n }\n\n default-column-width {\n fixed 500\n }\n }\n}\n\nwindow-rule {\n exclude title=\"parent\"\n\n open-fullscreen false\n}\n\nwindow-rule {\n match title=\"parent\"\n open-on-output \"headless-2\"\n}"
|
||||
expression: snapshot
|
||||
---
|
||||
final monitor: headless-1
|
||||
|
||||
+1
-1
@@ -1,6 +1,6 @@
|
||||
---
|
||||
source: src/tests/window_opening.rs
|
||||
description: "want fullscreen: B1\nconfig:\nworkspace \"ws-1\" {\n open-on-output \"headless-1\"\n}\n\nworkspace \"ws-2\" {\n open-on-output \"headless-2\"\n}\n\nwindow-rule {\n exclude title=\"parent\"\n\n open-fullscreen false\n}"
|
||||
description: "want fullscreen: B1\nconfig:\noutput \"headless-2\" {\n layout {\n border {\n on\n }\n }\n}\n\nworkspace \"ws-1\" {\n open-on-output \"headless-1\"\n}\n\nworkspace \"ws-2\" {\n open-on-output \"headless-2\"\n\n layout {\n border {\n width 10\n }\n\n default-column-width {\n fixed 500\n }\n }\n}\n\nwindow-rule {\n exclude title=\"parent\"\n\n open-fullscreen false\n}"
|
||||
expression: snapshot
|
||||
---
|
||||
final monitor: headless-1
|
||||
|
||||
+1
-1
@@ -1,6 +1,6 @@
|
||||
---
|
||||
source: src/tests/window_opening.rs
|
||||
description: "want fullscreen: B2\nset parent: B1\nconfig:\noutput \"headless-2\" {\n layout {\n border {\n on\n }\n }\n}\n\nworkspace \"ws-1\" {\n open-on-output \"headless-1\"\n}\n\nworkspace \"ws-2\" {\n open-on-output \"headless-2\"\n\n layout {\n border {\n width 10\n }\n }\n}\n\nwindow-rule {\n exclude title=\"parent\"\n\n open-fullscreen false\n}\n\nwindow-rule {\n match title=\"parent\"\n open-on-output \"headless-1\"\n}"
|
||||
description: "want fullscreen: B2\nset parent: B1\nconfig:\noutput \"headless-2\" {\n layout {\n border {\n on\n }\n }\n}\n\nworkspace \"ws-1\" {\n open-on-output \"headless-1\"\n}\n\nworkspace \"ws-2\" {\n open-on-output \"headless-2\"\n\n layout {\n border {\n width 10\n }\n\n default-column-width {\n fixed 500\n }\n }\n}\n\nwindow-rule {\n exclude title=\"parent\"\n\n open-fullscreen false\n}\n\nwindow-rule {\n match title=\"parent\"\n open-on-output \"headless-1\"\n}"
|
||||
expression: snapshot
|
||||
---
|
||||
final monitor: headless-2
|
||||
|
||||
+1
-1
@@ -1,6 +1,6 @@
|
||||
---
|
||||
source: src/tests/window_opening.rs
|
||||
description: "want fullscreen: B2\nset parent: B2\nconfig:\noutput \"headless-2\" {\n layout {\n border {\n on\n }\n }\n}\n\nworkspace \"ws-1\" {\n open-on-output \"headless-1\"\n}\n\nworkspace \"ws-2\" {\n open-on-output \"headless-2\"\n\n layout {\n border {\n width 10\n }\n }\n}\n\nwindow-rule {\n exclude title=\"parent\"\n\n open-fullscreen false\n}\n\nwindow-rule {\n match title=\"parent\"\n open-on-output \"headless-2\"\n}"
|
||||
description: "want fullscreen: B2\nset parent: B2\nconfig:\noutput \"headless-2\" {\n layout {\n border {\n on\n }\n }\n}\n\nworkspace \"ws-1\" {\n open-on-output \"headless-1\"\n}\n\nworkspace \"ws-2\" {\n open-on-output \"headless-2\"\n\n layout {\n border {\n width 10\n }\n\n default-column-width {\n fixed 500\n }\n }\n}\n\nwindow-rule {\n exclude title=\"parent\"\n\n open-fullscreen false\n}\n\nwindow-rule {\n match title=\"parent\"\n open-on-output \"headless-2\"\n}"
|
||||
expression: snapshot
|
||||
---
|
||||
final monitor: headless-2
|
||||
|
||||
+1
-1
@@ -1,6 +1,6 @@
|
||||
---
|
||||
source: src/tests/window_opening.rs
|
||||
description: "want fullscreen: BN\nset parent: A1\nconfig:\nworkspace \"ws-1\" {\n open-on-output \"headless-1\"\n}\n\nworkspace \"ws-2\" {\n open-on-output \"headless-2\"\n}\n\nwindow-rule {\n exclude title=\"parent\"\n\n open-fullscreen false\n}\n\nwindow-rule {\n match title=\"parent\"\n open-on-output \"headless-1\"\n}"
|
||||
description: "want fullscreen: BN\nset parent: A1\nconfig:\noutput \"headless-2\" {\n layout {\n border {\n on\n }\n }\n}\n\nworkspace \"ws-1\" {\n open-on-output \"headless-1\"\n}\n\nworkspace \"ws-2\" {\n open-on-output \"headless-2\"\n\n layout {\n border {\n width 10\n }\n\n default-column-width {\n fixed 500\n }\n }\n}\n\nwindow-rule {\n exclude title=\"parent\"\n\n open-fullscreen false\n}\n\nwindow-rule {\n match title=\"parent\"\n open-on-output \"headless-1\"\n}"
|
||||
expression: snapshot
|
||||
---
|
||||
final monitor: headless-1
|
||||
|
||||
+1
-1
@@ -1,6 +1,6 @@
|
||||
---
|
||||
source: src/tests/window_opening.rs
|
||||
description: "want fullscreen: BN\nset parent: A2\nconfig:\nworkspace \"ws-1\" {\n open-on-output \"headless-1\"\n}\n\nworkspace \"ws-2\" {\n open-on-output \"headless-2\"\n}\n\nwindow-rule {\n exclude title=\"parent\"\n\n open-fullscreen false\n}\n\nwindow-rule {\n match title=\"parent\"\n open-on-output \"headless-2\"\n}"
|
||||
description: "want fullscreen: BN\nset parent: A2\nconfig:\noutput \"headless-2\" {\n layout {\n border {\n on\n }\n }\n}\n\nworkspace \"ws-1\" {\n open-on-output \"headless-1\"\n}\n\nworkspace \"ws-2\" {\n open-on-output \"headless-2\"\n\n layout {\n border {\n width 10\n }\n\n default-column-width {\n fixed 500\n }\n }\n}\n\nwindow-rule {\n exclude title=\"parent\"\n\n open-fullscreen false\n}\n\nwindow-rule {\n match title=\"parent\"\n open-on-output \"headless-2\"\n}"
|
||||
expression: snapshot
|
||||
---
|
||||
final monitor: headless-1
|
||||
|
||||
+1
-1
@@ -1,6 +1,6 @@
|
||||
---
|
||||
source: src/tests/window_opening.rs
|
||||
description: "want fullscreen: BN\nset parent: B1\nconfig:\nworkspace \"ws-1\" {\n open-on-output \"headless-1\"\n}\n\nworkspace \"ws-2\" {\n open-on-output \"headless-2\"\n}\n\nwindow-rule {\n exclude title=\"parent\"\n\n open-fullscreen false\n}\n\nwindow-rule {\n match title=\"parent\"\n open-on-output \"headless-1\"\n}"
|
||||
description: "want fullscreen: BN\nset parent: B1\nconfig:\noutput \"headless-2\" {\n layout {\n border {\n on\n }\n }\n}\n\nworkspace \"ws-1\" {\n open-on-output \"headless-1\"\n}\n\nworkspace \"ws-2\" {\n open-on-output \"headless-2\"\n\n layout {\n border {\n width 10\n }\n\n default-column-width {\n fixed 500\n }\n }\n}\n\nwindow-rule {\n exclude title=\"parent\"\n\n open-fullscreen false\n}\n\nwindow-rule {\n match title=\"parent\"\n open-on-output \"headless-1\"\n}"
|
||||
expression: snapshot
|
||||
---
|
||||
final monitor: headless-1
|
||||
|
||||
+1
-1
@@ -1,6 +1,6 @@
|
||||
---
|
||||
source: src/tests/window_opening.rs
|
||||
description: "want fullscreen: BN\nset parent: B2\nconfig:\noutput \"headless-2\" {\n layout {\n border {\n on\n }\n }\n}\n\nworkspace \"ws-1\" {\n open-on-output \"headless-1\"\n}\n\nworkspace \"ws-2\" {\n open-on-output \"headless-2\"\n\n layout {\n border {\n width 10\n }\n }\n}\n\nwindow-rule {\n exclude title=\"parent\"\n\n open-fullscreen false\n}\n\nwindow-rule {\n match title=\"parent\"\n open-on-output \"headless-2\"\n}"
|
||||
description: "want fullscreen: BN\nset parent: B2\nconfig:\noutput \"headless-2\" {\n layout {\n border {\n on\n }\n }\n}\n\nworkspace \"ws-1\" {\n open-on-output \"headless-1\"\n}\n\nworkspace \"ws-2\" {\n open-on-output \"headless-2\"\n\n layout {\n border {\n width 10\n }\n\n default-column-width {\n fixed 500\n }\n }\n}\n\nwindow-rule {\n exclude title=\"parent\"\n\n open-fullscreen false\n}\n\nwindow-rule {\n match title=\"parent\"\n open-on-output \"headless-2\"\n}"
|
||||
expression: snapshot
|
||||
---
|
||||
final monitor: headless-2
|
||||
|
||||
+1
-1
@@ -1,6 +1,6 @@
|
||||
---
|
||||
source: src/tests/window_opening.rs
|
||||
description: "want fullscreen: BN\nconfig:\nworkspace \"ws-1\" {\n open-on-output \"headless-1\"\n}\n\nworkspace \"ws-2\" {\n open-on-output \"headless-2\"\n}\n\nwindow-rule {\n exclude title=\"parent\"\n\n open-fullscreen false\n}"
|
||||
description: "want fullscreen: BN\nconfig:\noutput \"headless-2\" {\n layout {\n border {\n on\n }\n }\n}\n\nworkspace \"ws-1\" {\n open-on-output \"headless-1\"\n}\n\nworkspace \"ws-2\" {\n open-on-output \"headless-2\"\n\n layout {\n border {\n width 10\n }\n\n default-column-width {\n fixed 500\n }\n }\n}\n\nwindow-rule {\n exclude title=\"parent\"\n\n open-fullscreen false\n}"
|
||||
expression: snapshot
|
||||
---
|
||||
final monitor: headless-1
|
||||
|
||||
+1
-1
@@ -1,6 +1,6 @@
|
||||
---
|
||||
source: src/tests/window_opening.rs
|
||||
description: "want fullscreen: BU\nset parent: A1\nconfig:\nworkspace \"ws-1\" {\n open-on-output \"headless-1\"\n}\n\nworkspace \"ws-2\" {\n open-on-output \"headless-2\"\n}\n\nwindow-rule {\n exclude title=\"parent\"\n\n open-fullscreen false\n}\n\nwindow-rule {\n match title=\"parent\"\n open-on-output \"headless-1\"\n}"
|
||||
description: "want fullscreen: BU\nset parent: A1\nconfig:\noutput \"headless-2\" {\n layout {\n border {\n on\n }\n }\n}\n\nworkspace \"ws-1\" {\n open-on-output \"headless-1\"\n}\n\nworkspace \"ws-2\" {\n open-on-output \"headless-2\"\n\n layout {\n border {\n width 10\n }\n\n default-column-width {\n fixed 500\n }\n }\n}\n\nwindow-rule {\n exclude title=\"parent\"\n\n open-fullscreen false\n}\n\nwindow-rule {\n match title=\"parent\"\n open-on-output \"headless-1\"\n}"
|
||||
expression: snapshot
|
||||
---
|
||||
final monitor: headless-1
|
||||
|
||||
+1
-1
@@ -1,6 +1,6 @@
|
||||
---
|
||||
source: src/tests/window_opening.rs
|
||||
description: "want fullscreen: BU\nset parent: A2\nconfig:\nworkspace \"ws-1\" {\n open-on-output \"headless-1\"\n}\n\nworkspace \"ws-2\" {\n open-on-output \"headless-2\"\n}\n\nwindow-rule {\n exclude title=\"parent\"\n\n open-fullscreen false\n}\n\nwindow-rule {\n match title=\"parent\"\n open-on-output \"headless-2\"\n}"
|
||||
description: "want fullscreen: BU\nset parent: A2\nconfig:\noutput \"headless-2\" {\n layout {\n border {\n on\n }\n }\n}\n\nworkspace \"ws-1\" {\n open-on-output \"headless-1\"\n}\n\nworkspace \"ws-2\" {\n open-on-output \"headless-2\"\n\n layout {\n border {\n width 10\n }\n\n default-column-width {\n fixed 500\n }\n }\n}\n\nwindow-rule {\n exclude title=\"parent\"\n\n open-fullscreen false\n}\n\nwindow-rule {\n match title=\"parent\"\n open-on-output \"headless-2\"\n}"
|
||||
expression: snapshot
|
||||
---
|
||||
final monitor: headless-1
|
||||
|
||||
+1
-1
@@ -1,6 +1,6 @@
|
||||
---
|
||||
source: src/tests/window_opening.rs
|
||||
description: "want fullscreen: BU\nset parent: B1\nconfig:\nworkspace \"ws-1\" {\n open-on-output \"headless-1\"\n}\n\nworkspace \"ws-2\" {\n open-on-output \"headless-2\"\n}\n\nwindow-rule {\n exclude title=\"parent\"\n\n open-fullscreen false\n}\n\nwindow-rule {\n match title=\"parent\"\n open-on-output \"headless-1\"\n}"
|
||||
description: "want fullscreen: BU\nset parent: B1\nconfig:\noutput \"headless-2\" {\n layout {\n border {\n on\n }\n }\n}\n\nworkspace \"ws-1\" {\n open-on-output \"headless-1\"\n}\n\nworkspace \"ws-2\" {\n open-on-output \"headless-2\"\n\n layout {\n border {\n width 10\n }\n\n default-column-width {\n fixed 500\n }\n }\n}\n\nwindow-rule {\n exclude title=\"parent\"\n\n open-fullscreen false\n}\n\nwindow-rule {\n match title=\"parent\"\n open-on-output \"headless-1\"\n}"
|
||||
expression: snapshot
|
||||
---
|
||||
final monitor: headless-1
|
||||
|
||||
+1
-1
@@ -1,6 +1,6 @@
|
||||
---
|
||||
source: src/tests/window_opening.rs
|
||||
description: "want fullscreen: BU\nset parent: B2\nconfig:\noutput \"headless-2\" {\n layout {\n border {\n on\n }\n }\n}\n\nworkspace \"ws-1\" {\n open-on-output \"headless-1\"\n}\n\nworkspace \"ws-2\" {\n open-on-output \"headless-2\"\n\n layout {\n border {\n width 10\n }\n }\n}\n\nwindow-rule {\n exclude title=\"parent\"\n\n open-fullscreen false\n}\n\nwindow-rule {\n match title=\"parent\"\n open-on-output \"headless-2\"\n}"
|
||||
description: "want fullscreen: BU\nset parent: B2\nconfig:\noutput \"headless-2\" {\n layout {\n border {\n on\n }\n }\n}\n\nworkspace \"ws-1\" {\n open-on-output \"headless-1\"\n}\n\nworkspace \"ws-2\" {\n open-on-output \"headless-2\"\n\n layout {\n border {\n width 10\n }\n\n default-column-width {\n fixed 500\n }\n }\n}\n\nwindow-rule {\n exclude title=\"parent\"\n\n open-fullscreen false\n}\n\nwindow-rule {\n match title=\"parent\"\n open-on-output \"headless-2\"\n}"
|
||||
expression: snapshot
|
||||
---
|
||||
final monitor: headless-2
|
||||
|
||||
+1
-1
@@ -1,6 +1,6 @@
|
||||
---
|
||||
source: src/tests/window_opening.rs
|
||||
description: "want fullscreen: BU\nconfig:\nworkspace \"ws-1\" {\n open-on-output \"headless-1\"\n}\n\nworkspace \"ws-2\" {\n open-on-output \"headless-2\"\n}\n\nwindow-rule {\n exclude title=\"parent\"\n\n open-fullscreen false\n}"
|
||||
description: "want fullscreen: BU\nconfig:\noutput \"headless-2\" {\n layout {\n border {\n on\n }\n }\n}\n\nworkspace \"ws-1\" {\n open-on-output \"headless-1\"\n}\n\nworkspace \"ws-2\" {\n open-on-output \"headless-2\"\n\n layout {\n border {\n width 10\n }\n\n default-column-width {\n fixed 500\n }\n }\n}\n\nwindow-rule {\n exclude title=\"parent\"\n\n open-fullscreen false\n}"
|
||||
expression: snapshot
|
||||
---
|
||||
final monitor: headless-1
|
||||
|
||||
+1
-1
@@ -1,6 +1,6 @@
|
||||
---
|
||||
source: src/tests/window_opening.rs
|
||||
description: "config:\nworkspace \"ws-1\" {\n open-on-output \"headless-1\"\n}\n\nworkspace \"ws-2\" {\n open-on-output \"headless-2\"\n}\n\nwindow-rule {\n exclude title=\"parent\"\n\n open-fullscreen false\n}"
|
||||
description: "config:\noutput \"headless-2\" {\n layout {\n border {\n on\n }\n }\n}\n\nworkspace \"ws-1\" {\n open-on-output \"headless-1\"\n}\n\nworkspace \"ws-2\" {\n open-on-output \"headless-2\"\n\n layout {\n border {\n width 10\n }\n\n default-column-width {\n fixed 500\n }\n }\n}\n\nwindow-rule {\n exclude title=\"parent\"\n\n open-fullscreen false\n}"
|
||||
expression: snapshot
|
||||
---
|
||||
final monitor: headless-1
|
||||
|
||||
+1
-1
@@ -1,6 +1,6 @@
|
||||
---
|
||||
source: src/tests/window_opening.rs
|
||||
description: "set parent: A1\nconfig:\nworkspace \"ws-1\" {\n open-on-output \"headless-1\"\n}\n\nworkspace \"ws-2\" {\n open-on-output \"headless-2\"\n}\n\nwindow-rule {\n exclude title=\"parent\"\n\n open-fullscreen true\n}\n\nwindow-rule {\n match title=\"parent\"\n open-on-output \"headless-1\"\n}"
|
||||
description: "set parent: A1\nconfig:\noutput \"headless-2\" {\n layout {\n border {\n on\n }\n }\n}\n\nworkspace \"ws-1\" {\n open-on-output \"headless-1\"\n}\n\nworkspace \"ws-2\" {\n open-on-output \"headless-2\"\n\n layout {\n border {\n width 10\n }\n\n default-column-width {\n fixed 500\n }\n }\n}\n\nwindow-rule {\n exclude title=\"parent\"\n\n open-fullscreen true\n}\n\nwindow-rule {\n match title=\"parent\"\n open-on-output \"headless-1\"\n}"
|
||||
expression: snapshot
|
||||
---
|
||||
final monitor: headless-1
|
||||
|
||||
+1
-1
@@ -1,6 +1,6 @@
|
||||
---
|
||||
source: src/tests/window_opening.rs
|
||||
description: "set parent: A2\nconfig:\nworkspace \"ws-1\" {\n open-on-output \"headless-1\"\n}\n\nworkspace \"ws-2\" {\n open-on-output \"headless-2\"\n}\n\nwindow-rule {\n exclude title=\"parent\"\n\n open-fullscreen true\n}\n\nwindow-rule {\n match title=\"parent\"\n open-on-output \"headless-2\"\n}"
|
||||
description: "set parent: A2\nconfig:\noutput \"headless-2\" {\n layout {\n border {\n on\n }\n }\n}\n\nworkspace \"ws-1\" {\n open-on-output \"headless-1\"\n}\n\nworkspace \"ws-2\" {\n open-on-output \"headless-2\"\n\n layout {\n border {\n width 10\n }\n\n default-column-width {\n fixed 500\n }\n }\n}\n\nwindow-rule {\n exclude title=\"parent\"\n\n open-fullscreen true\n}\n\nwindow-rule {\n match title=\"parent\"\n open-on-output \"headless-2\"\n}"
|
||||
expression: snapshot
|
||||
---
|
||||
final monitor: headless-1
|
||||
|
||||
+1
-1
@@ -1,6 +1,6 @@
|
||||
---
|
||||
source: src/tests/window_opening.rs
|
||||
description: "set parent: B1\nconfig:\nworkspace \"ws-1\" {\n open-on-output \"headless-1\"\n}\n\nworkspace \"ws-2\" {\n open-on-output \"headless-2\"\n}\n\nwindow-rule {\n exclude title=\"parent\"\n\n open-fullscreen true\n}\n\nwindow-rule {\n match title=\"parent\"\n open-on-output \"headless-1\"\n}"
|
||||
description: "set parent: B1\nconfig:\noutput \"headless-2\" {\n layout {\n border {\n on\n }\n }\n}\n\nworkspace \"ws-1\" {\n open-on-output \"headless-1\"\n}\n\nworkspace \"ws-2\" {\n open-on-output \"headless-2\"\n\n layout {\n border {\n width 10\n }\n\n default-column-width {\n fixed 500\n }\n }\n}\n\nwindow-rule {\n exclude title=\"parent\"\n\n open-fullscreen true\n}\n\nwindow-rule {\n match title=\"parent\"\n open-on-output \"headless-1\"\n}"
|
||||
expression: snapshot
|
||||
---
|
||||
final monitor: headless-1
|
||||
|
||||
+1
-1
@@ -1,6 +1,6 @@
|
||||
---
|
||||
source: src/tests/window_opening.rs
|
||||
description: "set parent: B2\nconfig:\noutput \"headless-2\" {\n layout {\n border {\n on\n }\n }\n}\n\nworkspace \"ws-1\" {\n open-on-output \"headless-1\"\n}\n\nworkspace \"ws-2\" {\n open-on-output \"headless-2\"\n\n layout {\n border {\n width 10\n }\n }\n}\n\nwindow-rule {\n exclude title=\"parent\"\n\n open-fullscreen true\n}\n\nwindow-rule {\n match title=\"parent\"\n open-on-output \"headless-2\"\n}"
|
||||
description: "set parent: B2\nconfig:\noutput \"headless-2\" {\n layout {\n border {\n on\n }\n }\n}\n\nworkspace \"ws-1\" {\n open-on-output \"headless-1\"\n}\n\nworkspace \"ws-2\" {\n open-on-output \"headless-2\"\n\n layout {\n border {\n width 10\n }\n\n default-column-width {\n fixed 500\n }\n }\n}\n\nwindow-rule {\n exclude title=\"parent\"\n\n open-fullscreen true\n}\n\nwindow-rule {\n match title=\"parent\"\n open-on-output \"headless-2\"\n}"
|
||||
expression: snapshot
|
||||
---
|
||||
final monitor: headless-2
|
||||
|
||||
+1
-1
@@ -1,6 +1,6 @@
|
||||
---
|
||||
source: src/tests/window_opening.rs
|
||||
description: "want fullscreen: A1\nset parent: A1\nconfig:\nworkspace \"ws-1\" {\n open-on-output \"headless-1\"\n}\n\nworkspace \"ws-2\" {\n open-on-output \"headless-2\"\n}\n\nwindow-rule {\n exclude title=\"parent\"\n\n open-fullscreen true\n}\n\nwindow-rule {\n match title=\"parent\"\n open-on-output \"headless-1\"\n}"
|
||||
description: "want fullscreen: A1\nset parent: A1\nconfig:\noutput \"headless-2\" {\n layout {\n border {\n on\n }\n }\n}\n\nworkspace \"ws-1\" {\n open-on-output \"headless-1\"\n}\n\nworkspace \"ws-2\" {\n open-on-output \"headless-2\"\n\n layout {\n border {\n width 10\n }\n\n default-column-width {\n fixed 500\n }\n }\n}\n\nwindow-rule {\n exclude title=\"parent\"\n\n open-fullscreen true\n}\n\nwindow-rule {\n match title=\"parent\"\n open-on-output \"headless-1\"\n}"
|
||||
expression: snapshot
|
||||
---
|
||||
final monitor: headless-1
|
||||
|
||||
+1
-1
@@ -1,6 +1,6 @@
|
||||
---
|
||||
source: src/tests/window_opening.rs
|
||||
description: "want fullscreen: A1\nset parent: A2\nconfig:\nworkspace \"ws-1\" {\n open-on-output \"headless-1\"\n}\n\nworkspace \"ws-2\" {\n open-on-output \"headless-2\"\n}\n\nwindow-rule {\n exclude title=\"parent\"\n\n open-fullscreen true\n}\n\nwindow-rule {\n match title=\"parent\"\n open-on-output \"headless-2\"\n}"
|
||||
description: "want fullscreen: A1\nset parent: A2\nconfig:\noutput \"headless-2\" {\n layout {\n border {\n on\n }\n }\n}\n\nworkspace \"ws-1\" {\n open-on-output \"headless-1\"\n}\n\nworkspace \"ws-2\" {\n open-on-output \"headless-2\"\n\n layout {\n border {\n width 10\n }\n\n default-column-width {\n fixed 500\n }\n }\n}\n\nwindow-rule {\n exclude title=\"parent\"\n\n open-fullscreen true\n}\n\nwindow-rule {\n match title=\"parent\"\n open-on-output \"headless-2\"\n}"
|
||||
expression: snapshot
|
||||
---
|
||||
final monitor: headless-1
|
||||
|
||||
+1
-1
@@ -1,6 +1,6 @@
|
||||
---
|
||||
source: src/tests/window_opening.rs
|
||||
description: "want fullscreen: A1\nset parent: B1\nconfig:\nworkspace \"ws-1\" {\n open-on-output \"headless-1\"\n}\n\nworkspace \"ws-2\" {\n open-on-output \"headless-2\"\n}\n\nwindow-rule {\n exclude title=\"parent\"\n\n open-fullscreen true\n}\n\nwindow-rule {\n match title=\"parent\"\n open-on-output \"headless-1\"\n}"
|
||||
description: "want fullscreen: A1\nset parent: B1\nconfig:\noutput \"headless-2\" {\n layout {\n border {\n on\n }\n }\n}\n\nworkspace \"ws-1\" {\n open-on-output \"headless-1\"\n}\n\nworkspace \"ws-2\" {\n open-on-output \"headless-2\"\n\n layout {\n border {\n width 10\n }\n\n default-column-width {\n fixed 500\n }\n }\n}\n\nwindow-rule {\n exclude title=\"parent\"\n\n open-fullscreen true\n}\n\nwindow-rule {\n match title=\"parent\"\n open-on-output \"headless-1\"\n}"
|
||||
expression: snapshot
|
||||
---
|
||||
final monitor: headless-1
|
||||
|
||||
+1
-1
@@ -1,6 +1,6 @@
|
||||
---
|
||||
source: src/tests/window_opening.rs
|
||||
description: "want fullscreen: A1\nset parent: B2\nconfig:\noutput \"headless-2\" {\n layout {\n border {\n on\n }\n }\n}\n\nworkspace \"ws-1\" {\n open-on-output \"headless-1\"\n}\n\nworkspace \"ws-2\" {\n open-on-output \"headless-2\"\n\n layout {\n border {\n width 10\n }\n }\n}\n\nwindow-rule {\n exclude title=\"parent\"\n\n open-fullscreen true\n}\n\nwindow-rule {\n match title=\"parent\"\n open-on-output \"headless-2\"\n}"
|
||||
description: "want fullscreen: A1\nset parent: B2\nconfig:\noutput \"headless-2\" {\n layout {\n border {\n on\n }\n }\n}\n\nworkspace \"ws-1\" {\n open-on-output \"headless-1\"\n}\n\nworkspace \"ws-2\" {\n open-on-output \"headless-2\"\n\n layout {\n border {\n width 10\n }\n\n default-column-width {\n fixed 500\n }\n }\n}\n\nwindow-rule {\n exclude title=\"parent\"\n\n open-fullscreen true\n}\n\nwindow-rule {\n match title=\"parent\"\n open-on-output \"headless-2\"\n}"
|
||||
expression: snapshot
|
||||
---
|
||||
final monitor: headless-2
|
||||
|
||||
+1
-1
@@ -1,6 +1,6 @@
|
||||
---
|
||||
source: src/tests/window_opening.rs
|
||||
description: "want fullscreen: A1\nconfig:\nworkspace \"ws-1\" {\n open-on-output \"headless-1\"\n}\n\nworkspace \"ws-2\" {\n open-on-output \"headless-2\"\n}\n\nwindow-rule {\n exclude title=\"parent\"\n\n open-fullscreen true\n}"
|
||||
description: "want fullscreen: A1\nconfig:\noutput \"headless-2\" {\n layout {\n border {\n on\n }\n }\n}\n\nworkspace \"ws-1\" {\n open-on-output \"headless-1\"\n}\n\nworkspace \"ws-2\" {\n open-on-output \"headless-2\"\n\n layout {\n border {\n width 10\n }\n\n default-column-width {\n fixed 500\n }\n }\n}\n\nwindow-rule {\n exclude title=\"parent\"\n\n open-fullscreen true\n}"
|
||||
expression: snapshot
|
||||
---
|
||||
final monitor: headless-1
|
||||
|
||||
+1
-1
@@ -1,6 +1,6 @@
|
||||
---
|
||||
source: src/tests/window_opening.rs
|
||||
description: "want fullscreen: A2\nset parent: A1\nconfig:\noutput \"headless-2\" {\n layout {\n border {\n on\n }\n }\n}\n\nworkspace \"ws-1\" {\n open-on-output \"headless-1\"\n}\n\nworkspace \"ws-2\" {\n open-on-output \"headless-2\"\n\n layout {\n border {\n width 10\n }\n }\n}\n\nwindow-rule {\n exclude title=\"parent\"\n\n open-fullscreen true\n}\n\nwindow-rule {\n match title=\"parent\"\n open-on-output \"headless-1\"\n}"
|
||||
description: "want fullscreen: A2\nset parent: A1\nconfig:\noutput \"headless-2\" {\n layout {\n border {\n on\n }\n }\n}\n\nworkspace \"ws-1\" {\n open-on-output \"headless-1\"\n}\n\nworkspace \"ws-2\" {\n open-on-output \"headless-2\"\n\n layout {\n border {\n width 10\n }\n\n default-column-width {\n fixed 500\n }\n }\n}\n\nwindow-rule {\n exclude title=\"parent\"\n\n open-fullscreen true\n}\n\nwindow-rule {\n match title=\"parent\"\n open-on-output \"headless-1\"\n}"
|
||||
expression: snapshot
|
||||
---
|
||||
final monitor: headless-1
|
||||
|
||||
+1
-1
@@ -1,6 +1,6 @@
|
||||
---
|
||||
source: src/tests/window_opening.rs
|
||||
description: "want fullscreen: A2\nset parent: A2\nconfig:\noutput \"headless-2\" {\n layout {\n border {\n on\n }\n }\n}\n\nworkspace \"ws-1\" {\n open-on-output \"headless-1\"\n}\n\nworkspace \"ws-2\" {\n open-on-output \"headless-2\"\n\n layout {\n border {\n width 10\n }\n }\n}\n\nwindow-rule {\n exclude title=\"parent\"\n\n open-fullscreen true\n}\n\nwindow-rule {\n match title=\"parent\"\n open-on-output \"headless-2\"\n}"
|
||||
description: "want fullscreen: A2\nset parent: A2\nconfig:\noutput \"headless-2\" {\n layout {\n border {\n on\n }\n }\n}\n\nworkspace \"ws-1\" {\n open-on-output \"headless-1\"\n}\n\nworkspace \"ws-2\" {\n open-on-output \"headless-2\"\n\n layout {\n border {\n width 10\n }\n\n default-column-width {\n fixed 500\n }\n }\n}\n\nwindow-rule {\n exclude title=\"parent\"\n\n open-fullscreen true\n}\n\nwindow-rule {\n match title=\"parent\"\n open-on-output \"headless-2\"\n}"
|
||||
expression: snapshot
|
||||
---
|
||||
final monitor: headless-2
|
||||
|
||||
+1
-1
@@ -1,6 +1,6 @@
|
||||
---
|
||||
source: src/tests/window_opening.rs
|
||||
description: "want fullscreen: A2\nset parent: B1\nconfig:\noutput \"headless-2\" {\n layout {\n border {\n on\n }\n }\n}\n\nworkspace \"ws-1\" {\n open-on-output \"headless-1\"\n}\n\nworkspace \"ws-2\" {\n open-on-output \"headless-2\"\n\n layout {\n border {\n width 10\n }\n }\n}\n\nwindow-rule {\n exclude title=\"parent\"\n\n open-fullscreen true\n}\n\nwindow-rule {\n match title=\"parent\"\n open-on-output \"headless-1\"\n}"
|
||||
description: "want fullscreen: A2\nset parent: B1\nconfig:\noutput \"headless-2\" {\n layout {\n border {\n on\n }\n }\n}\n\nworkspace \"ws-1\" {\n open-on-output \"headless-1\"\n}\n\nworkspace \"ws-2\" {\n open-on-output \"headless-2\"\n\n layout {\n border {\n width 10\n }\n\n default-column-width {\n fixed 500\n }\n }\n}\n\nwindow-rule {\n exclude title=\"parent\"\n\n open-fullscreen true\n}\n\nwindow-rule {\n match title=\"parent\"\n open-on-output \"headless-1\"\n}"
|
||||
expression: snapshot
|
||||
---
|
||||
final monitor: headless-1
|
||||
|
||||
+1
-1
@@ -1,6 +1,6 @@
|
||||
---
|
||||
source: src/tests/window_opening.rs
|
||||
description: "want fullscreen: A2\nset parent: B2\nconfig:\noutput \"headless-2\" {\n layout {\n border {\n on\n }\n }\n}\n\nworkspace \"ws-1\" {\n open-on-output \"headless-1\"\n}\n\nworkspace \"ws-2\" {\n open-on-output \"headless-2\"\n\n layout {\n border {\n width 10\n }\n }\n}\n\nwindow-rule {\n exclude title=\"parent\"\n\n open-fullscreen true\n}\n\nwindow-rule {\n match title=\"parent\"\n open-on-output \"headless-2\"\n}"
|
||||
description: "want fullscreen: A2\nset parent: B2\nconfig:\noutput \"headless-2\" {\n layout {\n border {\n on\n }\n }\n}\n\nworkspace \"ws-1\" {\n open-on-output \"headless-1\"\n}\n\nworkspace \"ws-2\" {\n open-on-output \"headless-2\"\n\n layout {\n border {\n width 10\n }\n\n default-column-width {\n fixed 500\n }\n }\n}\n\nwindow-rule {\n exclude title=\"parent\"\n\n open-fullscreen true\n}\n\nwindow-rule {\n match title=\"parent\"\n open-on-output \"headless-2\"\n}"
|
||||
expression: snapshot
|
||||
---
|
||||
final monitor: headless-2
|
||||
|
||||
+1
-1
@@ -1,6 +1,6 @@
|
||||
---
|
||||
source: src/tests/window_opening.rs
|
||||
description: "want fullscreen: A2\nconfig:\noutput \"headless-2\" {\n layout {\n border {\n on\n }\n }\n}\n\nworkspace \"ws-1\" {\n open-on-output \"headless-1\"\n}\n\nworkspace \"ws-2\" {\n open-on-output \"headless-2\"\n\n layout {\n border {\n width 10\n }\n }\n}\n\nwindow-rule {\n exclude title=\"parent\"\n\n open-fullscreen true\n}"
|
||||
description: "want fullscreen: A2\nconfig:\noutput \"headless-2\" {\n layout {\n border {\n on\n }\n }\n}\n\nworkspace \"ws-1\" {\n open-on-output \"headless-1\"\n}\n\nworkspace \"ws-2\" {\n open-on-output \"headless-2\"\n\n layout {\n border {\n width 10\n }\n\n default-column-width {\n fixed 500\n }\n }\n}\n\nwindow-rule {\n exclude title=\"parent\"\n\n open-fullscreen true\n}"
|
||||
expression: snapshot
|
||||
---
|
||||
final monitor: headless-1
|
||||
|
||||
+1
-1
@@ -1,6 +1,6 @@
|
||||
---
|
||||
source: src/tests/window_opening.rs
|
||||
description: "want fullscreen: AN\nset parent: A1\nconfig:\nworkspace \"ws-1\" {\n open-on-output \"headless-1\"\n}\n\nworkspace \"ws-2\" {\n open-on-output \"headless-2\"\n}\n\nwindow-rule {\n exclude title=\"parent\"\n\n open-fullscreen true\n}\n\nwindow-rule {\n match title=\"parent\"\n open-on-output \"headless-1\"\n}"
|
||||
description: "want fullscreen: AN\nset parent: A1\nconfig:\noutput \"headless-2\" {\n layout {\n border {\n on\n }\n }\n}\n\nworkspace \"ws-1\" {\n open-on-output \"headless-1\"\n}\n\nworkspace \"ws-2\" {\n open-on-output \"headless-2\"\n\n layout {\n border {\n width 10\n }\n\n default-column-width {\n fixed 500\n }\n }\n}\n\nwindow-rule {\n exclude title=\"parent\"\n\n open-fullscreen true\n}\n\nwindow-rule {\n match title=\"parent\"\n open-on-output \"headless-1\"\n}"
|
||||
expression: snapshot
|
||||
---
|
||||
final monitor: headless-1
|
||||
|
||||
+1
-1
@@ -1,6 +1,6 @@
|
||||
---
|
||||
source: src/tests/window_opening.rs
|
||||
description: "want fullscreen: AN\nset parent: A2\nconfig:\nworkspace \"ws-1\" {\n open-on-output \"headless-1\"\n}\n\nworkspace \"ws-2\" {\n open-on-output \"headless-2\"\n}\n\nwindow-rule {\n exclude title=\"parent\"\n\n open-fullscreen true\n}\n\nwindow-rule {\n match title=\"parent\"\n open-on-output \"headless-2\"\n}"
|
||||
description: "want fullscreen: AN\nset parent: A2\nconfig:\noutput \"headless-2\" {\n layout {\n border {\n on\n }\n }\n}\n\nworkspace \"ws-1\" {\n open-on-output \"headless-1\"\n}\n\nworkspace \"ws-2\" {\n open-on-output \"headless-2\"\n\n layout {\n border {\n width 10\n }\n\n default-column-width {\n fixed 500\n }\n }\n}\n\nwindow-rule {\n exclude title=\"parent\"\n\n open-fullscreen true\n}\n\nwindow-rule {\n match title=\"parent\"\n open-on-output \"headless-2\"\n}"
|
||||
expression: snapshot
|
||||
---
|
||||
final monitor: headless-1
|
||||
|
||||
+1
-1
@@ -1,6 +1,6 @@
|
||||
---
|
||||
source: src/tests/window_opening.rs
|
||||
description: "want fullscreen: AN\nset parent: B1\nconfig:\nworkspace \"ws-1\" {\n open-on-output \"headless-1\"\n}\n\nworkspace \"ws-2\" {\n open-on-output \"headless-2\"\n}\n\nwindow-rule {\n exclude title=\"parent\"\n\n open-fullscreen true\n}\n\nwindow-rule {\n match title=\"parent\"\n open-on-output \"headless-1\"\n}"
|
||||
description: "want fullscreen: AN\nset parent: B1\nconfig:\noutput \"headless-2\" {\n layout {\n border {\n on\n }\n }\n}\n\nworkspace \"ws-1\" {\n open-on-output \"headless-1\"\n}\n\nworkspace \"ws-2\" {\n open-on-output \"headless-2\"\n\n layout {\n border {\n width 10\n }\n\n default-column-width {\n fixed 500\n }\n }\n}\n\nwindow-rule {\n exclude title=\"parent\"\n\n open-fullscreen true\n}\n\nwindow-rule {\n match title=\"parent\"\n open-on-output \"headless-1\"\n}"
|
||||
expression: snapshot
|
||||
---
|
||||
final monitor: headless-1
|
||||
|
||||
+1
-1
@@ -1,6 +1,6 @@
|
||||
---
|
||||
source: src/tests/window_opening.rs
|
||||
description: "want fullscreen: AN\nset parent: B2\nconfig:\noutput \"headless-2\" {\n layout {\n border {\n on\n }\n }\n}\n\nworkspace \"ws-1\" {\n open-on-output \"headless-1\"\n}\n\nworkspace \"ws-2\" {\n open-on-output \"headless-2\"\n\n layout {\n border {\n width 10\n }\n }\n}\n\nwindow-rule {\n exclude title=\"parent\"\n\n open-fullscreen true\n}\n\nwindow-rule {\n match title=\"parent\"\n open-on-output \"headless-2\"\n}"
|
||||
description: "want fullscreen: AN\nset parent: B2\nconfig:\noutput \"headless-2\" {\n layout {\n border {\n on\n }\n }\n}\n\nworkspace \"ws-1\" {\n open-on-output \"headless-1\"\n}\n\nworkspace \"ws-2\" {\n open-on-output \"headless-2\"\n\n layout {\n border {\n width 10\n }\n\n default-column-width {\n fixed 500\n }\n }\n}\n\nwindow-rule {\n exclude title=\"parent\"\n\n open-fullscreen true\n}\n\nwindow-rule {\n match title=\"parent\"\n open-on-output \"headless-2\"\n}"
|
||||
expression: snapshot
|
||||
---
|
||||
final monitor: headless-2
|
||||
|
||||
+1
-1
@@ -1,6 +1,6 @@
|
||||
---
|
||||
source: src/tests/window_opening.rs
|
||||
description: "want fullscreen: AN\nconfig:\nworkspace \"ws-1\" {\n open-on-output \"headless-1\"\n}\n\nworkspace \"ws-2\" {\n open-on-output \"headless-2\"\n}\n\nwindow-rule {\n exclude title=\"parent\"\n\n open-fullscreen true\n}"
|
||||
description: "want fullscreen: AN\nconfig:\noutput \"headless-2\" {\n layout {\n border {\n on\n }\n }\n}\n\nworkspace \"ws-1\" {\n open-on-output \"headless-1\"\n}\n\nworkspace \"ws-2\" {\n open-on-output \"headless-2\"\n\n layout {\n border {\n width 10\n }\n\n default-column-width {\n fixed 500\n }\n }\n}\n\nwindow-rule {\n exclude title=\"parent\"\n\n open-fullscreen true\n}"
|
||||
expression: snapshot
|
||||
---
|
||||
final monitor: headless-1
|
||||
|
||||
+1
-1
@@ -1,6 +1,6 @@
|
||||
---
|
||||
source: src/tests/window_opening.rs
|
||||
description: "want fullscreen: AU\nset parent: A1\nconfig:\nworkspace \"ws-1\" {\n open-on-output \"headless-1\"\n}\n\nworkspace \"ws-2\" {\n open-on-output \"headless-2\"\n}\n\nwindow-rule {\n exclude title=\"parent\"\n\n open-fullscreen true\n}\n\nwindow-rule {\n match title=\"parent\"\n open-on-output \"headless-1\"\n}"
|
||||
description: "want fullscreen: AU\nset parent: A1\nconfig:\noutput \"headless-2\" {\n layout {\n border {\n on\n }\n }\n}\n\nworkspace \"ws-1\" {\n open-on-output \"headless-1\"\n}\n\nworkspace \"ws-2\" {\n open-on-output \"headless-2\"\n\n layout {\n border {\n width 10\n }\n\n default-column-width {\n fixed 500\n }\n }\n}\n\nwindow-rule {\n exclude title=\"parent\"\n\n open-fullscreen true\n}\n\nwindow-rule {\n match title=\"parent\"\n open-on-output \"headless-1\"\n}"
|
||||
expression: snapshot
|
||||
---
|
||||
final monitor: headless-1
|
||||
|
||||
+1
-1
@@ -1,6 +1,6 @@
|
||||
---
|
||||
source: src/tests/window_opening.rs
|
||||
description: "want fullscreen: AU\nset parent: A2\nconfig:\nworkspace \"ws-1\" {\n open-on-output \"headless-1\"\n}\n\nworkspace \"ws-2\" {\n open-on-output \"headless-2\"\n}\n\nwindow-rule {\n exclude title=\"parent\"\n\n open-fullscreen true\n}\n\nwindow-rule {\n match title=\"parent\"\n open-on-output \"headless-2\"\n}"
|
||||
description: "want fullscreen: AU\nset parent: A2\nconfig:\noutput \"headless-2\" {\n layout {\n border {\n on\n }\n }\n}\n\nworkspace \"ws-1\" {\n open-on-output \"headless-1\"\n}\n\nworkspace \"ws-2\" {\n open-on-output \"headless-2\"\n\n layout {\n border {\n width 10\n }\n\n default-column-width {\n fixed 500\n }\n }\n}\n\nwindow-rule {\n exclude title=\"parent\"\n\n open-fullscreen true\n}\n\nwindow-rule {\n match title=\"parent\"\n open-on-output \"headless-2\"\n}"
|
||||
expression: snapshot
|
||||
---
|
||||
final monitor: headless-1
|
||||
|
||||
+1
-1
@@ -1,6 +1,6 @@
|
||||
---
|
||||
source: src/tests/window_opening.rs
|
||||
description: "want fullscreen: AU\nset parent: B1\nconfig:\nworkspace \"ws-1\" {\n open-on-output \"headless-1\"\n}\n\nworkspace \"ws-2\" {\n open-on-output \"headless-2\"\n}\n\nwindow-rule {\n exclude title=\"parent\"\n\n open-fullscreen true\n}\n\nwindow-rule {\n match title=\"parent\"\n open-on-output \"headless-1\"\n}"
|
||||
description: "want fullscreen: AU\nset parent: B1\nconfig:\noutput \"headless-2\" {\n layout {\n border {\n on\n }\n }\n}\n\nworkspace \"ws-1\" {\n open-on-output \"headless-1\"\n}\n\nworkspace \"ws-2\" {\n open-on-output \"headless-2\"\n\n layout {\n border {\n width 10\n }\n\n default-column-width {\n fixed 500\n }\n }\n}\n\nwindow-rule {\n exclude title=\"parent\"\n\n open-fullscreen true\n}\n\nwindow-rule {\n match title=\"parent\"\n open-on-output \"headless-1\"\n}"
|
||||
expression: snapshot
|
||||
---
|
||||
final monitor: headless-1
|
||||
|
||||
+1
-1
@@ -1,6 +1,6 @@
|
||||
---
|
||||
source: src/tests/window_opening.rs
|
||||
description: "want fullscreen: AU\nset parent: B2\nconfig:\noutput \"headless-2\" {\n layout {\n border {\n on\n }\n }\n}\n\nworkspace \"ws-1\" {\n open-on-output \"headless-1\"\n}\n\nworkspace \"ws-2\" {\n open-on-output \"headless-2\"\n\n layout {\n border {\n width 10\n }\n }\n}\n\nwindow-rule {\n exclude title=\"parent\"\n\n open-fullscreen true\n}\n\nwindow-rule {\n match title=\"parent\"\n open-on-output \"headless-2\"\n}"
|
||||
description: "want fullscreen: AU\nset parent: B2\nconfig:\noutput \"headless-2\" {\n layout {\n border {\n on\n }\n }\n}\n\nworkspace \"ws-1\" {\n open-on-output \"headless-1\"\n}\n\nworkspace \"ws-2\" {\n open-on-output \"headless-2\"\n\n layout {\n border {\n width 10\n }\n\n default-column-width {\n fixed 500\n }\n }\n}\n\nwindow-rule {\n exclude title=\"parent\"\n\n open-fullscreen true\n}\n\nwindow-rule {\n match title=\"parent\"\n open-on-output \"headless-2\"\n}"
|
||||
expression: snapshot
|
||||
---
|
||||
final monitor: headless-2
|
||||
|
||||
+1
-1
@@ -1,6 +1,6 @@
|
||||
---
|
||||
source: src/tests/window_opening.rs
|
||||
description: "want fullscreen: AU\nconfig:\nworkspace \"ws-1\" {\n open-on-output \"headless-1\"\n}\n\nworkspace \"ws-2\" {\n open-on-output \"headless-2\"\n}\n\nwindow-rule {\n exclude title=\"parent\"\n\n open-fullscreen true\n}"
|
||||
description: "want fullscreen: AU\nconfig:\noutput \"headless-2\" {\n layout {\n border {\n on\n }\n }\n}\n\nworkspace \"ws-1\" {\n open-on-output \"headless-1\"\n}\n\nworkspace \"ws-2\" {\n open-on-output \"headless-2\"\n\n layout {\n border {\n width 10\n }\n\n default-column-width {\n fixed 500\n }\n }\n}\n\nwindow-rule {\n exclude title=\"parent\"\n\n open-fullscreen true\n}"
|
||||
expression: snapshot
|
||||
---
|
||||
final monitor: headless-1
|
||||
|
||||
+1
-1
@@ -1,6 +1,6 @@
|
||||
---
|
||||
source: src/tests/window_opening.rs
|
||||
description: "want fullscreen: B1\nset parent: A1\nconfig:\nworkspace \"ws-1\" {\n open-on-output \"headless-1\"\n}\n\nworkspace \"ws-2\" {\n open-on-output \"headless-2\"\n}\n\nwindow-rule {\n exclude title=\"parent\"\n\n open-fullscreen true\n}\n\nwindow-rule {\n match title=\"parent\"\n open-on-output \"headless-1\"\n}"
|
||||
description: "want fullscreen: B1\nset parent: A1\nconfig:\noutput \"headless-2\" {\n layout {\n border {\n on\n }\n }\n}\n\nworkspace \"ws-1\" {\n open-on-output \"headless-1\"\n}\n\nworkspace \"ws-2\" {\n open-on-output \"headless-2\"\n\n layout {\n border {\n width 10\n }\n\n default-column-width {\n fixed 500\n }\n }\n}\n\nwindow-rule {\n exclude title=\"parent\"\n\n open-fullscreen true\n}\n\nwindow-rule {\n match title=\"parent\"\n open-on-output \"headless-1\"\n}"
|
||||
expression: snapshot
|
||||
---
|
||||
final monitor: headless-1
|
||||
|
||||
+1
-1
@@ -1,6 +1,6 @@
|
||||
---
|
||||
source: src/tests/window_opening.rs
|
||||
description: "want fullscreen: B1\nset parent: A2\nconfig:\nworkspace \"ws-1\" {\n open-on-output \"headless-1\"\n}\n\nworkspace \"ws-2\" {\n open-on-output \"headless-2\"\n}\n\nwindow-rule {\n exclude title=\"parent\"\n\n open-fullscreen true\n}\n\nwindow-rule {\n match title=\"parent\"\n open-on-output \"headless-2\"\n}"
|
||||
description: "want fullscreen: B1\nset parent: A2\nconfig:\noutput \"headless-2\" {\n layout {\n border {\n on\n }\n }\n}\n\nworkspace \"ws-1\" {\n open-on-output \"headless-1\"\n}\n\nworkspace \"ws-2\" {\n open-on-output \"headless-2\"\n\n layout {\n border {\n width 10\n }\n\n default-column-width {\n fixed 500\n }\n }\n}\n\nwindow-rule {\n exclude title=\"parent\"\n\n open-fullscreen true\n}\n\nwindow-rule {\n match title=\"parent\"\n open-on-output \"headless-2\"\n}"
|
||||
expression: snapshot
|
||||
---
|
||||
final monitor: headless-1
|
||||
|
||||
+1
-1
@@ -1,6 +1,6 @@
|
||||
---
|
||||
source: src/tests/window_opening.rs
|
||||
description: "want fullscreen: B1\nset parent: B1\nconfig:\nworkspace \"ws-1\" {\n open-on-output \"headless-1\"\n}\n\nworkspace \"ws-2\" {\n open-on-output \"headless-2\"\n}\n\nwindow-rule {\n exclude title=\"parent\"\n\n open-fullscreen true\n}\n\nwindow-rule {\n match title=\"parent\"\n open-on-output \"headless-1\"\n}"
|
||||
description: "want fullscreen: B1\nset parent: B1\nconfig:\noutput \"headless-2\" {\n layout {\n border {\n on\n }\n }\n}\n\nworkspace \"ws-1\" {\n open-on-output \"headless-1\"\n}\n\nworkspace \"ws-2\" {\n open-on-output \"headless-2\"\n\n layout {\n border {\n width 10\n }\n\n default-column-width {\n fixed 500\n }\n }\n}\n\nwindow-rule {\n exclude title=\"parent\"\n\n open-fullscreen true\n}\n\nwindow-rule {\n match title=\"parent\"\n open-on-output \"headless-1\"\n}"
|
||||
expression: snapshot
|
||||
---
|
||||
final monitor: headless-1
|
||||
|
||||
+1
-1
@@ -1,6 +1,6 @@
|
||||
---
|
||||
source: src/tests/window_opening.rs
|
||||
description: "want fullscreen: B1\nset parent: B2\nconfig:\nworkspace \"ws-1\" {\n open-on-output \"headless-1\"\n}\n\nworkspace \"ws-2\" {\n open-on-output \"headless-2\"\n}\n\nwindow-rule {\n exclude title=\"parent\"\n\n open-fullscreen true\n}\n\nwindow-rule {\n match title=\"parent\"\n open-on-output \"headless-2\"\n}"
|
||||
description: "want fullscreen: B1\nset parent: B2\nconfig:\noutput \"headless-2\" {\n layout {\n border {\n on\n }\n }\n}\n\nworkspace \"ws-1\" {\n open-on-output \"headless-1\"\n}\n\nworkspace \"ws-2\" {\n open-on-output \"headless-2\"\n\n layout {\n border {\n width 10\n }\n\n default-column-width {\n fixed 500\n }\n }\n}\n\nwindow-rule {\n exclude title=\"parent\"\n\n open-fullscreen true\n}\n\nwindow-rule {\n match title=\"parent\"\n open-on-output \"headless-2\"\n}"
|
||||
expression: snapshot
|
||||
---
|
||||
final monitor: headless-1
|
||||
|
||||
+1
-1
@@ -1,6 +1,6 @@
|
||||
---
|
||||
source: src/tests/window_opening.rs
|
||||
description: "want fullscreen: B1\nconfig:\nworkspace \"ws-1\" {\n open-on-output \"headless-1\"\n}\n\nworkspace \"ws-2\" {\n open-on-output \"headless-2\"\n}\n\nwindow-rule {\n exclude title=\"parent\"\n\n open-fullscreen true\n}"
|
||||
description: "want fullscreen: B1\nconfig:\noutput \"headless-2\" {\n layout {\n border {\n on\n }\n }\n}\n\nworkspace \"ws-1\" {\n open-on-output \"headless-1\"\n}\n\nworkspace \"ws-2\" {\n open-on-output \"headless-2\"\n\n layout {\n border {\n width 10\n }\n\n default-column-width {\n fixed 500\n }\n }\n}\n\nwindow-rule {\n exclude title=\"parent\"\n\n open-fullscreen true\n}"
|
||||
expression: snapshot
|
||||
---
|
||||
final monitor: headless-1
|
||||
|
||||
+1
-1
@@ -1,6 +1,6 @@
|
||||
---
|
||||
source: src/tests/window_opening.rs
|
||||
description: "want fullscreen: B2\nset parent: A1\nconfig:\noutput \"headless-2\" {\n layout {\n border {\n on\n }\n }\n}\n\nworkspace \"ws-1\" {\n open-on-output \"headless-1\"\n}\n\nworkspace \"ws-2\" {\n open-on-output \"headless-2\"\n\n layout {\n border {\n width 10\n }\n }\n}\n\nwindow-rule {\n exclude title=\"parent\"\n\n open-fullscreen true\n}\n\nwindow-rule {\n match title=\"parent\"\n open-on-output \"headless-1\"\n}"
|
||||
description: "want fullscreen: B2\nset parent: A1\nconfig:\noutput \"headless-2\" {\n layout {\n border {\n on\n }\n }\n}\n\nworkspace \"ws-1\" {\n open-on-output \"headless-1\"\n}\n\nworkspace \"ws-2\" {\n open-on-output \"headless-2\"\n\n layout {\n border {\n width 10\n }\n\n default-column-width {\n fixed 500\n }\n }\n}\n\nwindow-rule {\n exclude title=\"parent\"\n\n open-fullscreen true\n}\n\nwindow-rule {\n match title=\"parent\"\n open-on-output \"headless-1\"\n}"
|
||||
expression: snapshot
|
||||
---
|
||||
final monitor: headless-2
|
||||
|
||||
+1
-1
@@ -1,6 +1,6 @@
|
||||
---
|
||||
source: src/tests/window_opening.rs
|
||||
description: "want fullscreen: B2\nset parent: A2\nconfig:\noutput \"headless-2\" {\n layout {\n border {\n on\n }\n }\n}\n\nworkspace \"ws-1\" {\n open-on-output \"headless-1\"\n}\n\nworkspace \"ws-2\" {\n open-on-output \"headless-2\"\n\n layout {\n border {\n width 10\n }\n }\n}\n\nwindow-rule {\n exclude title=\"parent\"\n\n open-fullscreen true\n}\n\nwindow-rule {\n match title=\"parent\"\n open-on-output \"headless-2\"\n}"
|
||||
description: "want fullscreen: B2\nset parent: A2\nconfig:\noutput \"headless-2\" {\n layout {\n border {\n on\n }\n }\n}\n\nworkspace \"ws-1\" {\n open-on-output \"headless-1\"\n}\n\nworkspace \"ws-2\" {\n open-on-output \"headless-2\"\n\n layout {\n border {\n width 10\n }\n\n default-column-width {\n fixed 500\n }\n }\n}\n\nwindow-rule {\n exclude title=\"parent\"\n\n open-fullscreen true\n}\n\nwindow-rule {\n match title=\"parent\"\n open-on-output \"headless-2\"\n}"
|
||||
expression: snapshot
|
||||
---
|
||||
final monitor: headless-2
|
||||
|
||||
+1
-1
@@ -1,6 +1,6 @@
|
||||
---
|
||||
source: src/tests/window_opening.rs
|
||||
description: "want fullscreen: B2\nset parent: B1\nconfig:\noutput \"headless-2\" {\n layout {\n border {\n on\n }\n }\n}\n\nworkspace \"ws-1\" {\n open-on-output \"headless-1\"\n}\n\nworkspace \"ws-2\" {\n open-on-output \"headless-2\"\n\n layout {\n border {\n width 10\n }\n }\n}\n\nwindow-rule {\n exclude title=\"parent\"\n\n open-fullscreen true\n}\n\nwindow-rule {\n match title=\"parent\"\n open-on-output \"headless-1\"\n}"
|
||||
description: "want fullscreen: B2\nset parent: B1\nconfig:\noutput \"headless-2\" {\n layout {\n border {\n on\n }\n }\n}\n\nworkspace \"ws-1\" {\n open-on-output \"headless-1\"\n}\n\nworkspace \"ws-2\" {\n open-on-output \"headless-2\"\n\n layout {\n border {\n width 10\n }\n\n default-column-width {\n fixed 500\n }\n }\n}\n\nwindow-rule {\n exclude title=\"parent\"\n\n open-fullscreen true\n}\n\nwindow-rule {\n match title=\"parent\"\n open-on-output \"headless-1\"\n}"
|
||||
expression: snapshot
|
||||
---
|
||||
final monitor: headless-2
|
||||
|
||||
+1
-1
@@ -1,6 +1,6 @@
|
||||
---
|
||||
source: src/tests/window_opening.rs
|
||||
description: "want fullscreen: B2\nset parent: B2\nconfig:\noutput \"headless-2\" {\n layout {\n border {\n on\n }\n }\n}\n\nworkspace \"ws-1\" {\n open-on-output \"headless-1\"\n}\n\nworkspace \"ws-2\" {\n open-on-output \"headless-2\"\n\n layout {\n border {\n width 10\n }\n }\n}\n\nwindow-rule {\n exclude title=\"parent\"\n\n open-fullscreen true\n}\n\nwindow-rule {\n match title=\"parent\"\n open-on-output \"headless-2\"\n}"
|
||||
description: "want fullscreen: B2\nset parent: B2\nconfig:\noutput \"headless-2\" {\n layout {\n border {\n on\n }\n }\n}\n\nworkspace \"ws-1\" {\n open-on-output \"headless-1\"\n}\n\nworkspace \"ws-2\" {\n open-on-output \"headless-2\"\n\n layout {\n border {\n width 10\n }\n\n default-column-width {\n fixed 500\n }\n }\n}\n\nwindow-rule {\n exclude title=\"parent\"\n\n open-fullscreen true\n}\n\nwindow-rule {\n match title=\"parent\"\n open-on-output \"headless-2\"\n}"
|
||||
expression: snapshot
|
||||
---
|
||||
final monitor: headless-2
|
||||
|
||||
+1
-1
@@ -1,6 +1,6 @@
|
||||
---
|
||||
source: src/tests/window_opening.rs
|
||||
description: "want fullscreen: BN\nset parent: A1\nconfig:\nworkspace \"ws-1\" {\n open-on-output \"headless-1\"\n}\n\nworkspace \"ws-2\" {\n open-on-output \"headless-2\"\n}\n\nwindow-rule {\n exclude title=\"parent\"\n\n open-fullscreen true\n}\n\nwindow-rule {\n match title=\"parent\"\n open-on-output \"headless-1\"\n}"
|
||||
description: "want fullscreen: BN\nset parent: A1\nconfig:\noutput \"headless-2\" {\n layout {\n border {\n on\n }\n }\n}\n\nworkspace \"ws-1\" {\n open-on-output \"headless-1\"\n}\n\nworkspace \"ws-2\" {\n open-on-output \"headless-2\"\n\n layout {\n border {\n width 10\n }\n\n default-column-width {\n fixed 500\n }\n }\n}\n\nwindow-rule {\n exclude title=\"parent\"\n\n open-fullscreen true\n}\n\nwindow-rule {\n match title=\"parent\"\n open-on-output \"headless-1\"\n}"
|
||||
expression: snapshot
|
||||
---
|
||||
final monitor: headless-1
|
||||
|
||||
+1
-1
@@ -1,6 +1,6 @@
|
||||
---
|
||||
source: src/tests/window_opening.rs
|
||||
description: "want fullscreen: BN\nset parent: A2\nconfig:\nworkspace \"ws-1\" {\n open-on-output \"headless-1\"\n}\n\nworkspace \"ws-2\" {\n open-on-output \"headless-2\"\n}\n\nwindow-rule {\n exclude title=\"parent\"\n\n open-fullscreen true\n}\n\nwindow-rule {\n match title=\"parent\"\n open-on-output \"headless-2\"\n}"
|
||||
description: "want fullscreen: BN\nset parent: A2\nconfig:\noutput \"headless-2\" {\n layout {\n border {\n on\n }\n }\n}\n\nworkspace \"ws-1\" {\n open-on-output \"headless-1\"\n}\n\nworkspace \"ws-2\" {\n open-on-output \"headless-2\"\n\n layout {\n border {\n width 10\n }\n\n default-column-width {\n fixed 500\n }\n }\n}\n\nwindow-rule {\n exclude title=\"parent\"\n\n open-fullscreen true\n}\n\nwindow-rule {\n match title=\"parent\"\n open-on-output \"headless-2\"\n}"
|
||||
expression: snapshot
|
||||
---
|
||||
final monitor: headless-1
|
||||
|
||||
+1
-1
@@ -1,6 +1,6 @@
|
||||
---
|
||||
source: src/tests/window_opening.rs
|
||||
description: "want fullscreen: BN\nset parent: B1\nconfig:\nworkspace \"ws-1\" {\n open-on-output \"headless-1\"\n}\n\nworkspace \"ws-2\" {\n open-on-output \"headless-2\"\n}\n\nwindow-rule {\n exclude title=\"parent\"\n\n open-fullscreen true\n}\n\nwindow-rule {\n match title=\"parent\"\n open-on-output \"headless-1\"\n}"
|
||||
description: "want fullscreen: BN\nset parent: B1\nconfig:\noutput \"headless-2\" {\n layout {\n border {\n on\n }\n }\n}\n\nworkspace \"ws-1\" {\n open-on-output \"headless-1\"\n}\n\nworkspace \"ws-2\" {\n open-on-output \"headless-2\"\n\n layout {\n border {\n width 10\n }\n\n default-column-width {\n fixed 500\n }\n }\n}\n\nwindow-rule {\n exclude title=\"parent\"\n\n open-fullscreen true\n}\n\nwindow-rule {\n match title=\"parent\"\n open-on-output \"headless-1\"\n}"
|
||||
expression: snapshot
|
||||
---
|
||||
final monitor: headless-1
|
||||
|
||||
+1
-1
@@ -1,6 +1,6 @@
|
||||
---
|
||||
source: src/tests/window_opening.rs
|
||||
description: "want fullscreen: BN\nset parent: B2\nconfig:\noutput \"headless-2\" {\n layout {\n border {\n on\n }\n }\n}\n\nworkspace \"ws-1\" {\n open-on-output \"headless-1\"\n}\n\nworkspace \"ws-2\" {\n open-on-output \"headless-2\"\n\n layout {\n border {\n width 10\n }\n }\n}\n\nwindow-rule {\n exclude title=\"parent\"\n\n open-fullscreen true\n}\n\nwindow-rule {\n match title=\"parent\"\n open-on-output \"headless-2\"\n}"
|
||||
description: "want fullscreen: BN\nset parent: B2\nconfig:\noutput \"headless-2\" {\n layout {\n border {\n on\n }\n }\n}\n\nworkspace \"ws-1\" {\n open-on-output \"headless-1\"\n}\n\nworkspace \"ws-2\" {\n open-on-output \"headless-2\"\n\n layout {\n border {\n width 10\n }\n\n default-column-width {\n fixed 500\n }\n }\n}\n\nwindow-rule {\n exclude title=\"parent\"\n\n open-fullscreen true\n}\n\nwindow-rule {\n match title=\"parent\"\n open-on-output \"headless-2\"\n}"
|
||||
expression: snapshot
|
||||
---
|
||||
final monitor: headless-2
|
||||
|
||||
+1
-1
@@ -1,6 +1,6 @@
|
||||
---
|
||||
source: src/tests/window_opening.rs
|
||||
description: "want fullscreen: BN\nconfig:\nworkspace \"ws-1\" {\n open-on-output \"headless-1\"\n}\n\nworkspace \"ws-2\" {\n open-on-output \"headless-2\"\n}\n\nwindow-rule {\n exclude title=\"parent\"\n\n open-fullscreen true\n}"
|
||||
description: "want fullscreen: BN\nconfig:\noutput \"headless-2\" {\n layout {\n border {\n on\n }\n }\n}\n\nworkspace \"ws-1\" {\n open-on-output \"headless-1\"\n}\n\nworkspace \"ws-2\" {\n open-on-output \"headless-2\"\n\n layout {\n border {\n width 10\n }\n\n default-column-width {\n fixed 500\n }\n }\n}\n\nwindow-rule {\n exclude title=\"parent\"\n\n open-fullscreen true\n}"
|
||||
expression: snapshot
|
||||
---
|
||||
final monitor: headless-1
|
||||
|
||||
+1
-1
@@ -1,6 +1,6 @@
|
||||
---
|
||||
source: src/tests/window_opening.rs
|
||||
description: "want fullscreen: BU\nset parent: A1\nconfig:\nworkspace \"ws-1\" {\n open-on-output \"headless-1\"\n}\n\nworkspace \"ws-2\" {\n open-on-output \"headless-2\"\n}\n\nwindow-rule {\n exclude title=\"parent\"\n\n open-fullscreen true\n}\n\nwindow-rule {\n match title=\"parent\"\n open-on-output \"headless-1\"\n}"
|
||||
description: "want fullscreen: BU\nset parent: A1\nconfig:\noutput \"headless-2\" {\n layout {\n border {\n on\n }\n }\n}\n\nworkspace \"ws-1\" {\n open-on-output \"headless-1\"\n}\n\nworkspace \"ws-2\" {\n open-on-output \"headless-2\"\n\n layout {\n border {\n width 10\n }\n\n default-column-width {\n fixed 500\n }\n }\n}\n\nwindow-rule {\n exclude title=\"parent\"\n\n open-fullscreen true\n}\n\nwindow-rule {\n match title=\"parent\"\n open-on-output \"headless-1\"\n}"
|
||||
expression: snapshot
|
||||
---
|
||||
final monitor: headless-1
|
||||
|
||||
+1
-1
@@ -1,6 +1,6 @@
|
||||
---
|
||||
source: src/tests/window_opening.rs
|
||||
description: "want fullscreen: BU\nset parent: A2\nconfig:\nworkspace \"ws-1\" {\n open-on-output \"headless-1\"\n}\n\nworkspace \"ws-2\" {\n open-on-output \"headless-2\"\n}\n\nwindow-rule {\n exclude title=\"parent\"\n\n open-fullscreen true\n}\n\nwindow-rule {\n match title=\"parent\"\n open-on-output \"headless-2\"\n}"
|
||||
description: "want fullscreen: BU\nset parent: A2\nconfig:\noutput \"headless-2\" {\n layout {\n border {\n on\n }\n }\n}\n\nworkspace \"ws-1\" {\n open-on-output \"headless-1\"\n}\n\nworkspace \"ws-2\" {\n open-on-output \"headless-2\"\n\n layout {\n border {\n width 10\n }\n\n default-column-width {\n fixed 500\n }\n }\n}\n\nwindow-rule {\n exclude title=\"parent\"\n\n open-fullscreen true\n}\n\nwindow-rule {\n match title=\"parent\"\n open-on-output \"headless-2\"\n}"
|
||||
expression: snapshot
|
||||
---
|
||||
final monitor: headless-1
|
||||
|
||||
+1
-1
@@ -1,6 +1,6 @@
|
||||
---
|
||||
source: src/tests/window_opening.rs
|
||||
description: "want fullscreen: BU\nset parent: B1\nconfig:\nworkspace \"ws-1\" {\n open-on-output \"headless-1\"\n}\n\nworkspace \"ws-2\" {\n open-on-output \"headless-2\"\n}\n\nwindow-rule {\n exclude title=\"parent\"\n\n open-fullscreen true\n}\n\nwindow-rule {\n match title=\"parent\"\n open-on-output \"headless-1\"\n}"
|
||||
description: "want fullscreen: BU\nset parent: B1\nconfig:\noutput \"headless-2\" {\n layout {\n border {\n on\n }\n }\n}\n\nworkspace \"ws-1\" {\n open-on-output \"headless-1\"\n}\n\nworkspace \"ws-2\" {\n open-on-output \"headless-2\"\n\n layout {\n border {\n width 10\n }\n\n default-column-width {\n fixed 500\n }\n }\n}\n\nwindow-rule {\n exclude title=\"parent\"\n\n open-fullscreen true\n}\n\nwindow-rule {\n match title=\"parent\"\n open-on-output \"headless-1\"\n}"
|
||||
expression: snapshot
|
||||
---
|
||||
final monitor: headless-1
|
||||
|
||||
+1
-1
@@ -1,6 +1,6 @@
|
||||
---
|
||||
source: src/tests/window_opening.rs
|
||||
description: "want fullscreen: BU\nset parent: B2\nconfig:\noutput \"headless-2\" {\n layout {\n border {\n on\n }\n }\n}\n\nworkspace \"ws-1\" {\n open-on-output \"headless-1\"\n}\n\nworkspace \"ws-2\" {\n open-on-output \"headless-2\"\n\n layout {\n border {\n width 10\n }\n }\n}\n\nwindow-rule {\n exclude title=\"parent\"\n\n open-fullscreen true\n}\n\nwindow-rule {\n match title=\"parent\"\n open-on-output \"headless-2\"\n}"
|
||||
description: "want fullscreen: BU\nset parent: B2\nconfig:\noutput \"headless-2\" {\n layout {\n border {\n on\n }\n }\n}\n\nworkspace \"ws-1\" {\n open-on-output \"headless-1\"\n}\n\nworkspace \"ws-2\" {\n open-on-output \"headless-2\"\n\n layout {\n border {\n width 10\n }\n\n default-column-width {\n fixed 500\n }\n }\n}\n\nwindow-rule {\n exclude title=\"parent\"\n\n open-fullscreen true\n}\n\nwindow-rule {\n match title=\"parent\"\n open-on-output \"headless-2\"\n}"
|
||||
expression: snapshot
|
||||
---
|
||||
final monitor: headless-2
|
||||
|
||||
+1
-1
@@ -1,6 +1,6 @@
|
||||
---
|
||||
source: src/tests/window_opening.rs
|
||||
description: "want fullscreen: BU\nconfig:\nworkspace \"ws-1\" {\n open-on-output \"headless-1\"\n}\n\nworkspace \"ws-2\" {\n open-on-output \"headless-2\"\n}\n\nwindow-rule {\n exclude title=\"parent\"\n\n open-fullscreen true\n}"
|
||||
description: "want fullscreen: BU\nconfig:\noutput \"headless-2\" {\n layout {\n border {\n on\n }\n }\n}\n\nworkspace \"ws-1\" {\n open-on-output \"headless-1\"\n}\n\nworkspace \"ws-2\" {\n open-on-output \"headless-2\"\n\n layout {\n border {\n width 10\n }\n\n default-column-width {\n fixed 500\n }\n }\n}\n\nwindow-rule {\n exclude title=\"parent\"\n\n open-fullscreen true\n}"
|
||||
expression: snapshot
|
||||
---
|
||||
final monitor: headless-1
|
||||
|
||||
+1
-1
@@ -1,6 +1,6 @@
|
||||
---
|
||||
source: src/tests/window_opening.rs
|
||||
description: "config:\nworkspace \"ws-1\" {\n open-on-output \"headless-1\"\n}\n\nworkspace \"ws-2\" {\n open-on-output \"headless-2\"\n}\n\nwindow-rule {\n exclude title=\"parent\"\n\n open-fullscreen true\n}"
|
||||
description: "config:\noutput \"headless-2\" {\n layout {\n border {\n on\n }\n }\n}\n\nworkspace \"ws-1\" {\n open-on-output \"headless-1\"\n}\n\nworkspace \"ws-2\" {\n open-on-output \"headless-2\"\n\n layout {\n border {\n width 10\n }\n\n default-column-width {\n fixed 500\n }\n }\n}\n\nwindow-rule {\n exclude title=\"parent\"\n\n open-fullscreen true\n}"
|
||||
expression: snapshot
|
||||
---
|
||||
final monitor: headless-1
|
||||
|
||||
+1
-1
@@ -1,6 +1,6 @@
|
||||
---
|
||||
source: src/tests/window_opening.rs
|
||||
description: "set parent: A1\nconfig:\nworkspace \"ws-1\" {\n open-on-output \"headless-1\"\n}\n\nworkspace \"ws-2\" {\n open-on-output \"headless-2\"\n}\n\nwindow-rule {\n exclude title=\"parent\"\n\n open-on-output \"headless-1\"\n open-fullscreen false\n}\n\nwindow-rule {\n match title=\"parent\"\n open-on-output \"headless-1\"\n}"
|
||||
description: "set parent: A1\nconfig:\noutput \"headless-2\" {\n layout {\n border {\n on\n }\n }\n}\n\nworkspace \"ws-1\" {\n open-on-output \"headless-1\"\n}\n\nworkspace \"ws-2\" {\n open-on-output \"headless-2\"\n\n layout {\n border {\n width 10\n }\n\n default-column-width {\n fixed 500\n }\n }\n}\n\nwindow-rule {\n exclude title=\"parent\"\n\n open-on-output \"headless-1\"\n open-fullscreen false\n}\n\nwindow-rule {\n match title=\"parent\"\n open-on-output \"headless-1\"\n}"
|
||||
expression: snapshot
|
||||
---
|
||||
final monitor: headless-1
|
||||
|
||||
+1
-1
@@ -1,6 +1,6 @@
|
||||
---
|
||||
source: src/tests/window_opening.rs
|
||||
description: "set parent: A2\nconfig:\nworkspace \"ws-1\" {\n open-on-output \"headless-1\"\n}\n\nworkspace \"ws-2\" {\n open-on-output \"headless-2\"\n}\n\nwindow-rule {\n exclude title=\"parent\"\n\n open-on-output \"headless-1\"\n open-fullscreen false\n}\n\nwindow-rule {\n match title=\"parent\"\n open-on-output \"headless-2\"\n}"
|
||||
description: "set parent: A2\nconfig:\noutput \"headless-2\" {\n layout {\n border {\n on\n }\n }\n}\n\nworkspace \"ws-1\" {\n open-on-output \"headless-1\"\n}\n\nworkspace \"ws-2\" {\n open-on-output \"headless-2\"\n\n layout {\n border {\n width 10\n }\n\n default-column-width {\n fixed 500\n }\n }\n}\n\nwindow-rule {\n exclude title=\"parent\"\n\n open-on-output \"headless-1\"\n open-fullscreen false\n}\n\nwindow-rule {\n match title=\"parent\"\n open-on-output \"headless-2\"\n}"
|
||||
expression: snapshot
|
||||
---
|
||||
final monitor: headless-1
|
||||
|
||||
+1
-1
@@ -1,6 +1,6 @@
|
||||
---
|
||||
source: src/tests/window_opening.rs
|
||||
description: "set parent: B1\nconfig:\nworkspace \"ws-1\" {\n open-on-output \"headless-1\"\n}\n\nworkspace \"ws-2\" {\n open-on-output \"headless-2\"\n}\n\nwindow-rule {\n exclude title=\"parent\"\n\n open-on-output \"headless-1\"\n open-fullscreen false\n}\n\nwindow-rule {\n match title=\"parent\"\n open-on-output \"headless-1\"\n}"
|
||||
description: "set parent: B1\nconfig:\noutput \"headless-2\" {\n layout {\n border {\n on\n }\n }\n}\n\nworkspace \"ws-1\" {\n open-on-output \"headless-1\"\n}\n\nworkspace \"ws-2\" {\n open-on-output \"headless-2\"\n\n layout {\n border {\n width 10\n }\n\n default-column-width {\n fixed 500\n }\n }\n}\n\nwindow-rule {\n exclude title=\"parent\"\n\n open-on-output \"headless-1\"\n open-fullscreen false\n}\n\nwindow-rule {\n match title=\"parent\"\n open-on-output \"headless-1\"\n}"
|
||||
expression: snapshot
|
||||
---
|
||||
final monitor: headless-1
|
||||
|
||||
+1
-1
@@ -1,6 +1,6 @@
|
||||
---
|
||||
source: src/tests/window_opening.rs
|
||||
description: "set parent: B2\nconfig:\nworkspace \"ws-1\" {\n open-on-output \"headless-1\"\n}\n\nworkspace \"ws-2\" {\n open-on-output \"headless-2\"\n}\n\nwindow-rule {\n exclude title=\"parent\"\n\n open-on-output \"headless-1\"\n open-fullscreen false\n}\n\nwindow-rule {\n match title=\"parent\"\n open-on-output \"headless-2\"\n}"
|
||||
description: "set parent: B2\nconfig:\noutput \"headless-2\" {\n layout {\n border {\n on\n }\n }\n}\n\nworkspace \"ws-1\" {\n open-on-output \"headless-1\"\n}\n\nworkspace \"ws-2\" {\n open-on-output \"headless-2\"\n\n layout {\n border {\n width 10\n }\n\n default-column-width {\n fixed 500\n }\n }\n}\n\nwindow-rule {\n exclude title=\"parent\"\n\n open-on-output \"headless-1\"\n open-fullscreen false\n}\n\nwindow-rule {\n match title=\"parent\"\n open-on-output \"headless-2\"\n}"
|
||||
expression: snapshot
|
||||
---
|
||||
final monitor: headless-1
|
||||
|
||||
+1
-1
@@ -1,6 +1,6 @@
|
||||
---
|
||||
source: src/tests/window_opening.rs
|
||||
description: "want fullscreen: A1\nset parent: A1\nconfig:\nworkspace \"ws-1\" {\n open-on-output \"headless-1\"\n}\n\nworkspace \"ws-2\" {\n open-on-output \"headless-2\"\n}\n\nwindow-rule {\n exclude title=\"parent\"\n\n open-on-output \"headless-1\"\n open-fullscreen false\n}\n\nwindow-rule {\n match title=\"parent\"\n open-on-output \"headless-1\"\n}"
|
||||
description: "want fullscreen: A1\nset parent: A1\nconfig:\noutput \"headless-2\" {\n layout {\n border {\n on\n }\n }\n}\n\nworkspace \"ws-1\" {\n open-on-output \"headless-1\"\n}\n\nworkspace \"ws-2\" {\n open-on-output \"headless-2\"\n\n layout {\n border {\n width 10\n }\n\n default-column-width {\n fixed 500\n }\n }\n}\n\nwindow-rule {\n exclude title=\"parent\"\n\n open-on-output \"headless-1\"\n open-fullscreen false\n}\n\nwindow-rule {\n match title=\"parent\"\n open-on-output \"headless-1\"\n}"
|
||||
expression: snapshot
|
||||
---
|
||||
final monitor: headless-1
|
||||
|
||||
+1
-1
@@ -1,6 +1,6 @@
|
||||
---
|
||||
source: src/tests/window_opening.rs
|
||||
description: "want fullscreen: A1\nset parent: A2\nconfig:\nworkspace \"ws-1\" {\n open-on-output \"headless-1\"\n}\n\nworkspace \"ws-2\" {\n open-on-output \"headless-2\"\n}\n\nwindow-rule {\n exclude title=\"parent\"\n\n open-on-output \"headless-1\"\n open-fullscreen false\n}\n\nwindow-rule {\n match title=\"parent\"\n open-on-output \"headless-2\"\n}"
|
||||
description: "want fullscreen: A1\nset parent: A2\nconfig:\noutput \"headless-2\" {\n layout {\n border {\n on\n }\n }\n}\n\nworkspace \"ws-1\" {\n open-on-output \"headless-1\"\n}\n\nworkspace \"ws-2\" {\n open-on-output \"headless-2\"\n\n layout {\n border {\n width 10\n }\n\n default-column-width {\n fixed 500\n }\n }\n}\n\nwindow-rule {\n exclude title=\"parent\"\n\n open-on-output \"headless-1\"\n open-fullscreen false\n}\n\nwindow-rule {\n match title=\"parent\"\n open-on-output \"headless-2\"\n}"
|
||||
expression: snapshot
|
||||
---
|
||||
final monitor: headless-1
|
||||
|
||||
+1
-1
@@ -1,6 +1,6 @@
|
||||
---
|
||||
source: src/tests/window_opening.rs
|
||||
description: "want fullscreen: A1\nset parent: B1\nconfig:\nworkspace \"ws-1\" {\n open-on-output \"headless-1\"\n}\n\nworkspace \"ws-2\" {\n open-on-output \"headless-2\"\n}\n\nwindow-rule {\n exclude title=\"parent\"\n\n open-on-output \"headless-1\"\n open-fullscreen false\n}\n\nwindow-rule {\n match title=\"parent\"\n open-on-output \"headless-1\"\n}"
|
||||
description: "want fullscreen: A1\nset parent: B1\nconfig:\noutput \"headless-2\" {\n layout {\n border {\n on\n }\n }\n}\n\nworkspace \"ws-1\" {\n open-on-output \"headless-1\"\n}\n\nworkspace \"ws-2\" {\n open-on-output \"headless-2\"\n\n layout {\n border {\n width 10\n }\n\n default-column-width {\n fixed 500\n }\n }\n}\n\nwindow-rule {\n exclude title=\"parent\"\n\n open-on-output \"headless-1\"\n open-fullscreen false\n}\n\nwindow-rule {\n match title=\"parent\"\n open-on-output \"headless-1\"\n}"
|
||||
expression: snapshot
|
||||
---
|
||||
final monitor: headless-1
|
||||
|
||||
+1
-1
@@ -1,6 +1,6 @@
|
||||
---
|
||||
source: src/tests/window_opening.rs
|
||||
description: "want fullscreen: A1\nset parent: B2\nconfig:\nworkspace \"ws-1\" {\n open-on-output \"headless-1\"\n}\n\nworkspace \"ws-2\" {\n open-on-output \"headless-2\"\n}\n\nwindow-rule {\n exclude title=\"parent\"\n\n open-on-output \"headless-1\"\n open-fullscreen false\n}\n\nwindow-rule {\n match title=\"parent\"\n open-on-output \"headless-2\"\n}"
|
||||
description: "want fullscreen: A1\nset parent: B2\nconfig:\noutput \"headless-2\" {\n layout {\n border {\n on\n }\n }\n}\n\nworkspace \"ws-1\" {\n open-on-output \"headless-1\"\n}\n\nworkspace \"ws-2\" {\n open-on-output \"headless-2\"\n\n layout {\n border {\n width 10\n }\n\n default-column-width {\n fixed 500\n }\n }\n}\n\nwindow-rule {\n exclude title=\"parent\"\n\n open-on-output \"headless-1\"\n open-fullscreen false\n}\n\nwindow-rule {\n match title=\"parent\"\n open-on-output \"headless-2\"\n}"
|
||||
expression: snapshot
|
||||
---
|
||||
final monitor: headless-1
|
||||
|
||||
+1
-1
@@ -1,6 +1,6 @@
|
||||
---
|
||||
source: src/tests/window_opening.rs
|
||||
description: "want fullscreen: A1\nconfig:\nworkspace \"ws-1\" {\n open-on-output \"headless-1\"\n}\n\nworkspace \"ws-2\" {\n open-on-output \"headless-2\"\n}\n\nwindow-rule {\n exclude title=\"parent\"\n\n open-on-output \"headless-1\"\n open-fullscreen false\n}"
|
||||
description: "want fullscreen: A1\nconfig:\noutput \"headless-2\" {\n layout {\n border {\n on\n }\n }\n}\n\nworkspace \"ws-1\" {\n open-on-output \"headless-1\"\n}\n\nworkspace \"ws-2\" {\n open-on-output \"headless-2\"\n\n layout {\n border {\n width 10\n }\n\n default-column-width {\n fixed 500\n }\n }\n}\n\nwindow-rule {\n exclude title=\"parent\"\n\n open-on-output \"headless-1\"\n open-fullscreen false\n}"
|
||||
expression: snapshot
|
||||
---
|
||||
final monitor: headless-1
|
||||
|
||||
+1
-1
@@ -1,6 +1,6 @@
|
||||
---
|
||||
source: src/tests/window_opening.rs
|
||||
description: "want fullscreen: A2\nset parent: A1\nconfig:\noutput \"headless-2\" {\n layout {\n border {\n on\n }\n }\n}\n\nworkspace \"ws-1\" {\n open-on-output \"headless-1\"\n}\n\nworkspace \"ws-2\" {\n open-on-output \"headless-2\"\n\n layout {\n border {\n width 10\n }\n }\n}\n\nwindow-rule {\n exclude title=\"parent\"\n\n open-on-output \"headless-1\"\n open-fullscreen false\n}\n\nwindow-rule {\n match title=\"parent\"\n open-on-output \"headless-1\"\n}"
|
||||
description: "want fullscreen: A2\nset parent: A1\nconfig:\noutput \"headless-2\" {\n layout {\n border {\n on\n }\n }\n}\n\nworkspace \"ws-1\" {\n open-on-output \"headless-1\"\n}\n\nworkspace \"ws-2\" {\n open-on-output \"headless-2\"\n\n layout {\n border {\n width 10\n }\n\n default-column-width {\n fixed 500\n }\n }\n}\n\nwindow-rule {\n exclude title=\"parent\"\n\n open-on-output \"headless-1\"\n open-fullscreen false\n}\n\nwindow-rule {\n match title=\"parent\"\n open-on-output \"headless-1\"\n}"
|
||||
expression: snapshot
|
||||
---
|
||||
final monitor: headless-1
|
||||
|
||||
+1
-1
@@ -1,6 +1,6 @@
|
||||
---
|
||||
source: src/tests/window_opening.rs
|
||||
description: "want fullscreen: A2\nset parent: A2\nconfig:\noutput \"headless-2\" {\n layout {\n border {\n on\n }\n }\n}\n\nworkspace \"ws-1\" {\n open-on-output \"headless-1\"\n}\n\nworkspace \"ws-2\" {\n open-on-output \"headless-2\"\n\n layout {\n border {\n width 10\n }\n }\n}\n\nwindow-rule {\n exclude title=\"parent\"\n\n open-on-output \"headless-1\"\n open-fullscreen false\n}\n\nwindow-rule {\n match title=\"parent\"\n open-on-output \"headless-2\"\n}"
|
||||
description: "want fullscreen: A2\nset parent: A2\nconfig:\noutput \"headless-2\" {\n layout {\n border {\n on\n }\n }\n}\n\nworkspace \"ws-1\" {\n open-on-output \"headless-1\"\n}\n\nworkspace \"ws-2\" {\n open-on-output \"headless-2\"\n\n layout {\n border {\n width 10\n }\n\n default-column-width {\n fixed 500\n }\n }\n}\n\nwindow-rule {\n exclude title=\"parent\"\n\n open-on-output \"headless-1\"\n open-fullscreen false\n}\n\nwindow-rule {\n match title=\"parent\"\n open-on-output \"headless-2\"\n}"
|
||||
expression: snapshot
|
||||
---
|
||||
final monitor: headless-2
|
||||
|
||||
+1
-1
@@ -1,6 +1,6 @@
|
||||
---
|
||||
source: src/tests/window_opening.rs
|
||||
description: "want fullscreen: A2\nset parent: B1\nconfig:\noutput \"headless-2\" {\n layout {\n border {\n on\n }\n }\n}\n\nworkspace \"ws-1\" {\n open-on-output \"headless-1\"\n}\n\nworkspace \"ws-2\" {\n open-on-output \"headless-2\"\n\n layout {\n border {\n width 10\n }\n }\n}\n\nwindow-rule {\n exclude title=\"parent\"\n\n open-on-output \"headless-1\"\n open-fullscreen false\n}\n\nwindow-rule {\n match title=\"parent\"\n open-on-output \"headless-1\"\n}"
|
||||
description: "want fullscreen: A2\nset parent: B1\nconfig:\noutput \"headless-2\" {\n layout {\n border {\n on\n }\n }\n}\n\nworkspace \"ws-1\" {\n open-on-output \"headless-1\"\n}\n\nworkspace \"ws-2\" {\n open-on-output \"headless-2\"\n\n layout {\n border {\n width 10\n }\n\n default-column-width {\n fixed 500\n }\n }\n}\n\nwindow-rule {\n exclude title=\"parent\"\n\n open-on-output \"headless-1\"\n open-fullscreen false\n}\n\nwindow-rule {\n match title=\"parent\"\n open-on-output \"headless-1\"\n}"
|
||||
expression: snapshot
|
||||
---
|
||||
final monitor: headless-1
|
||||
|
||||
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user