summaryrefslogtreecommitdiffstats
path: root/sample_configuration/switchBack.sh
blob: 0fc3039a02b5f1bca2218ca1fcae897f42cf49c0 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
#!/bin/bash

# Force vmplayer to desktop 0
WINDOWS=$(xdotool search --class vmplayer)
for window in $WINDOWS; do
	wmctrl -i -r $window -t 0
done

# switch back to desktop 0
wmctrl -s 0