]> Sergey Matveev's repositories - dotfiles.git/blobdiff - bin/bin/www
start-x-hidpi
[dotfiles.git] / bin / bin / www
diff --git a/bin/bin/www b/bin/bin/www
deleted file mode 100755 (executable)
index e7beed9..0000000
+++ /dev/null
@@ -1,15 +0,0 @@
-#!/bin/sh
-
-term() {
-    DISPLAY=:0 CMD="tmux attach-session -t www" CMDTITLE="Terminal9" $HOME/bin/dwm-term &
-}
-
-if tmux has-session -t www 2> /dev/null ; then
-    tmux new-window -t www "lynx $@"
-    attached=`tmux list-sessions -F "#{session_attached}" -f "#{==:#{session_name},www}"`
-    [ "$attached" != "0" ] || term &
-else
-    tmux new-session -d -s www "lynx $@"
-    tmux set-option -t www default-command lynx
-    term &
-fi