]> git.sur5r.net Git - i3/i3/commitdiff
Add -name argument for Xephyr (#2937)
authorOrestis <orestisf1993@gmail.com>
Thu, 14 Sep 2017 20:10:16 +0000 (23:10 +0300)
committerMichael Stapelberg <stapelberg@users.noreply.github.com>
Thu, 14 Sep 2017 20:10:16 +0000 (22:10 +0200)
This way you can assign the test windows to an empty workspace to avoid
interacting with them (when xvfb-run is not an option):
assign [instance="i3test"] workspace testing

testcases/lib/StartXServer.pm

index d3042c07195ead9543266a592036e49772b7dbc2..9d4e40c79a60742e0b965a90e0673d0dcc3772e6 100644 (file)
@@ -105,7 +105,7 @@ sub start_xserver {
     for (1 .. $parallel) {
         my $socket = fork_xserver($keep_xserver_output, $displaynum,
                 'Xephyr', ":$displaynum", '-screen', '1280x800',
-                '-nolisten', 'tcp');
+                '-nolisten', 'tcp', '-name', "i3test");
         push(@displays, ":$displaynum");
         push(@sockets_waiting, $socket);
         $displaynum++;