#!/usr/bin/env bash
#
# Wrapper to executute a shell command in the background followed by a change to a
# workspace
#
# $1 - workspace to change to
# $2+ - shell command

wg=$1; shift
cmd="$@"
ratpoison -c "vselect $wg"
eval $cmd &
ratpoison -c 'barsend'
echo "D$wg" > /tmp/panel-fifo