Skip to content

Instantly share code, notes, and snippets.

View ArcticLight's full-sized avatar
🍎

Matthew Clive ArcticLight

🍎
View GitHub Profile
anonymous
anonymous / standup-zsh.sh
Created March 6, 2017 17:38
#!/usr/bin/env bash
if tmux list-sessions ; then
tmux new-window "bash -c \"export STARTUP_DIR=$(pwd); zsh\""
tmux a
else
tmux new-session "bash -c \"export STARTUP_DIR=$(pwd); zsh\""
fi