forked from gotbletu/shownotes
-
Notifications
You must be signed in to change notification settings - Fork 0
/
tmux_layout.txt
42 lines (34 loc) · 1.15 KB
/
tmux_layout.txt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
# this is notes for video: http://www.youtube.com/watch?v=sxw-n5Du600
## for ~/.tmux.conf
# -v = split horizontal
# -h = split veritical
# chatting
bind-key M-c new-window -n chat -c $HOME \; \
send-keys 'centerim5' 'Enter' \; \
split-window -v -p 50 -t 1 \; \
send-keys 'weechat-curses' 'Enter' \; \
select-pane -t 2
# local music and streaming
bind-key M-m new-window -n music -c $HOME \; \
send-keys 'clear && figlet Radio' 'Enter' \; \
split-window -v -p 50 -t 1 \; \
send-keys 'cmus' 'Enter' \; \
split-window -h -p 70 -t 1 \; \
send-keys 'clear && figlet Search Music' 'Enter' \; \
select-pane -t 2
# download and search torrent
bind-key M-t new-window -n torrent -c ~/Videos \; \
send-keys 'trz' 'Enter' \; \
split-window -v -p 50 -t 1 \; \
send-keys 'transmission-remote-cli' 'Enter' \; \
select-pane -t 1
# work
bind-key M-w new-window -n work -c $HOME \; \
send-keys 'clear && figlet Workhorse' 'Enter' \; \
split-window -v -p 30 -t 1 \; \
send-keys 'ranger ~/Documents' 'Enter' \; \
split-window -h -p 35 -t 1 \; \
send-keys 'tty-clock -t' 'Enter' \; \
split-window -v -p 50 -t 3 \; \
send-keys 'cmatrix' 'Enter' \; \
select-pane -t 2