mirror of
https://github.com/jimeh/tmuxifier.git
synced 2026-02-19 09:56:39 +00:00
16 lines
346 B
Bash
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
|