2 # vim:ts=4:sw=4:expandtab
6 my $x = X11::XCB::Connection->new;
10 #####################################################################
11 # Ensure IPC works by switching workspaces
12 #####################################################################
14 # Create a window so we can get a focus different from NULL
15 my $window = open_standard_window($x);
18 my $focus = $x->input_focus;
20 # Switch to another workspace
24 my $new_focus = $x->input_focus;
25 isnt($focus, $new_focus, "Focus changed");