#!/bin/bash # make sure vmplayer is really on workspace 0 WINDOWS=$(xdotool search --class vmplayer) for window in $WINDOWS; do wmctrl -i -r $window -t 0 done # move PVS-Manager to workspace 1 and focus it wt="PVS2 Manager" wmctrl -r "$wt" -t 1 wmctrl -s 1 wmctrl -a "$wt"