Advertisement
Guest User

Untitled

a guest
Jul 27th, 2020
581
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Bash 0.31 KB | None | 0 0
  1. dev-tmux () {
  2.     tmux -u -f "~/.tmux.conf" new-session -d -n work
  3.     tmux -u new-window -n git_management -c "${PWD}"
  4.     tmux -u new-window -n files -c "${PWD}"
  5.     tmux -u split-window -h -c "${PWD}"
  6.     tmux -u selectp -t 0
  7.     tmux -u new-window -n misc -c "${PWD}"
  8.     tmux -u selectw -t 0
  9.     tmux -u -2 attach-session -d
  10. }
  11.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement