Merge pull request #296 from loumray/patch-1

Fix for spawning scripts that require no args
This commit is contained in:
Luke Smith 2019-05-12 07:55:04 -04:00 committed by GitHub
commit 18e001db07

View file

@ -7,11 +7,13 @@
[ -z "$1" ] && exit [ -z "$1" ] && exit
if xwininfo -tree -root | grep "(\"dropdown_$1\" "; script=$1
shift
if xwininfo -tree -root | grep "(\"dropdown_$script\" ";
then then
echo "Window detected." echo "Window detected."
i3 "[instance=\"dropdown_$1\"] scratchpad show; [instance=\"dropdown_$1\"] move position center" i3 "[instance=\"dropdown_$script\"] scratchpad show; [instance=\"dropdown_$script\"] move position center"
else else
echo "Window not detected... spawning." echo "Window not detected... spawning."
i3 "exec --no-startup-id $TERMINAL -n dropdown_$1 $(echo "$@" | cut -d ' ' -f2-) -e $1" i3 "exec --no-startup-id $TERMINAL -n dropdown_$script $@ -e $script"
fi fi