]> Sergey Matveev's repositories - dotfiles.git/blobdiff - bin/bin/www
tmuxed lynx is simpler and convenient
[dotfiles.git] / bin / bin / www
index a7a62626105592a244d0186bb7c25f8ea7143d3a..b92ce8ae26d0786073560d84f6d64195f1769835 100755 (executable)
@@ -1,5 +1,9 @@
 #!/bin/sh
 
-winid=`NOTABSTART=$NOTABSTART start-tabbed.sh lynx -f start-lynx.sh`
-[ $# -gt 0 ] || exit 0
-exec ~/bin/start-lynx.sh $winid $@
+if tmux has-session -t www 2> /dev/null ; then
+    tmux new-window -t www "lynx $@"
+else
+    tmux new-session -d -s www "lynx $@"
+    tmux set-option -t www default-command lynx
+    DISPLAY=:0 CMD="tmux attach-session -t www" CMDTITLE="Terminal9" $HOME/bin/dwm-term &
+fi