7 lines
145 B
Bash
7 lines
145 B
Bash
#!/bin/sh
|
|
# Create new window
|
|
tmux neww -n wiki
|
|
|
|
tmux send-keys -t 0 'cd ~/vc/wiki' C-m
|
|
tmux send-keys -t 0 "nvim -c 'Goyo 150 | WikiIndex'" C-m
|