From c3343937deb2a65d8cda90c41219c9883ae3da1d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=2EFernando=20S=C3=A1nchez?= Date: Mon, 17 Jun 2013 15:31:12 +0200 Subject: [PATCH] Adapted for python2 --- i3-one-instance | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/i3-one-instance b/i3-one-instance index 0bbca1a..4a9f92a 100755 --- a/i3-one-instance +++ b/i3-one-instance @@ -1,5 +1,5 @@ #!/bin/sh -python $HOME/.bin/i3-wm-scripts/nextmatch.py $1 +python2 $HOME/.bin/i3-wm-scripts/nextmatch.py $1 if [ $? -gt 0 ]; then - $* & sleep 0.1 && python $HOME/.bin/i3-wm-scripts/nextmatch.py $1 + $* & sleep 0.1 && python2 $HOME/.bin/i3-wm-scripts/nextmatch.py $1 fi