15 lines
548 B
Bash
Executable File
15 lines
548 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
SESSION='quak'
|
|
# dont forget the '-d' option, otherwise the rest of
|
|
# the commands will get executed after the session is closed
|
|
tmux new-session -d -s "$SESSION" -n "temp"
|
|
tmux new-window -t "$SESSION" -n "dotfiles"
|
|
tmux send-keys -t "$SESSION" "cd ~/dotfiles" C-m "clear" C-m
|
|
tmux new-window -t "$SESSION" -n "docs"
|
|
tmux send-keys -t "$SESSION" "cd ~/collection" C-m "clear" C-m
|
|
tmux new-window -t "$SESSION" -n "stuff"
|
|
tmux send-keys -t "$SESSION" "cd ~" C-m "clear" C-m
|
|
tmux kill-window -t "temp"
|
|
tmux attach -t "$SESSION"
|