aboutsummaryrefslogtreecommitdiff
path: root/ratpoison/exec_to_workspace
blob: 8bacd78e3ee1039dfb3f670bcbf2922c60cc3403 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
#!/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="$@"
bspc desktop -f $wg &
eval $cmd &