25 lines
292 B
Perl
25 lines
292 B
Perl
#!perl
|
|
# vim:ts=4:sw=4:expandtab
|
|
#
|
|
# Verifies that i3 survives inplace restarts with fullscreen containers
|
|
#
|
|
use i3test;
|
|
|
|
fresh_workspace;
|
|
|
|
open_window;
|
|
open_window;
|
|
|
|
cmd 'layout stacking';
|
|
sync_with_i3;
|
|
|
|
cmd 'fullscreen';
|
|
sync_with_i3;
|
|
|
|
cmd 'restart';
|
|
sleep 1;
|
|
|
|
does_i3_live;
|
|
|
|
done_testing;
|