blob: 4521b112ad5f1d2ccb86ffa73e548dee189a78fd (
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 "$1" >/dev/null
sleep 2
bspswallow &
|