blob: 81a2a0b0919e31bc5c2d7a2c5fdce1d86ed2e99e (
plain)
1
2
3
4
5
6
7
|
#!/bin/sh
# Prefix to a command to make it so that any windows spawned from it don't swallow the terminal
# for launching things from sxhd etc
killall bspswallow
eval $@ >/dev/null
sleep 2
bspswallow &
|