blob: 78692df24d8039cdf36e97c0410a3cade921e7a7 (
plain)
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
|
neww
set -g status off
#image pane; run cover script, disable text output and remove prompt
#send-keys "stty -echo" C-m
#send-keys "tput civis -- invisible" C-m
#send-keys "export PS1=''" C-m
#send-keys "clear" C-m
#send-keys "~/.config/ncmpcpp/cover.sh " C-m
#visualizer pane; run instance of ncmpcpp in visualizer mode
send-keys "ncmpcpp --config='~/.config/ncmpcpp/visualizer.conf'" C-m
send-keys 8
send-keys u
#subtitle pane
select-pane -t 1
split-window -v
send-keys "pro" C-m
send-keys "ncmpcpp --config='~/.config/ncmpcpp/catalog.conf'" C-m
send-keys l
#catalog pane; run instance of ncmpcpp
select-pane -t 1
split-window -h
send-keys "ncmpcpp --config='~/.config/ncmpcpp/catalog.conf'" C-m
send-keys 2
|