Files
tmuxifier/examples/example.window.sh

16 lines
346 B
Bash

# Set window root path. Default is `$session_root`.
# Must be called before `new_window`.
window_root "~/Desktop"
# Create new window. If no argument is given, window name will be based on
# layout file name.
new_window "Example Window"
# Split window into panes.
split_v 20
run_cmd "watch -t date"
split_h 60
# Set active pane.
select_pane 0