mirror of
https://github.com/jimeh/tmuxifier.git
synced 2026-02-19 01:46:40 +00:00
23 lines
537 B
Bash
23 lines
537 B
Bash
# Set window root path. Default is `$session_root`.
|
|
# Must be called before `new_window`.
|
|
#window_root "~/Projects/{{WINDOW_NAME}}"
|
|
|
|
# Create new window. If no argument is given, window name will be based on
|
|
# layout file name.
|
|
new_window "{{WINDOW_NAME}}"
|
|
|
|
# Split window into panes.
|
|
#split_v 20
|
|
#split_h 50
|
|
|
|
# Run commands.
|
|
#run_cmd "top" # runs in active pane
|
|
#run_cmd "date" 1 # runs in pane 1
|
|
|
|
# Paste text
|
|
#send_keys "top" # paste into active pane
|
|
#send_keys "date" 1 # paste into pane 1
|
|
|
|
# Set active pane.
|
|
#select_pane 0
|