aboutsummaryrefslogtreecommitdiff
path: root/config/ratpoison/exec_to_workspace
blob: c7968f27650a5e8dafaf1866f1243b171814ced5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
#!/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="$@"
rpws $wg
eval $cmd &
ratpoison -c 'barsend'