blob: 69ad131efe243a217f7f3148cccacfc399b3ae6a (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
# Simple script designed to be `source-file`'d from within Tmux. It will setup
# panes with common directories for work.
# Dotfiles
new -s dotfiles -n main
send-keys 'cd ~/dotfiles' C-m
# Meta
new -s meta -n main
send-keys 'cd ~/urbint/meta' C-m
# Grid
new -s grid -n main
send-keys 'cd ~/urbint/grid' C-m
|