]> Sergey Matveev's repositories - dotfiles.git/blobdiff - bin/bin/start-tabbed.sh
Split huge bin/ to proper subdirectories
[dotfiles.git] / bin / bin / start-tabbed.sh
diff --git a/bin/bin/start-tabbed.sh b/bin/bin/start-tabbed.sh
deleted file mode 100755 (executable)
index f7a0bf9..0000000
+++ /dev/null
@@ -1,16 +0,0 @@
-#!/bin/sh
-
-tabname=$1
-shift
-w=/tmp/tabbed-$tabname
-[ -r "$w" ] && {
-    read winid < $w
-    wmclass=`xprop -id $winid WM_CLASS 2>/dev/null`
-    echo "$wmclass" | grep -q tabbed-$tabname && {
-        echo $winid
-        exit
-    }
-}
-[ -z "$NOTABSTART" ] || exit 1
-tabbed -n tabbed-$tabname -d $@ > $w
-exec $0 $tabname $@