Skip to content

Latest commit

 

History

History
42 lines (28 loc) · 645 Bytes

File metadata and controls

42 lines (28 loc) · 645 Bytes

(top-level)= (top-level-config)=

Top-level configuration

session_name

Used for:

  • tmux session name
  • checking for existing sessions

Notes:

  • Session names may differ from workspace filename.

    e.g. apple.yaml:

    session_name: banana
    windows:
      - panes:
          -

    Load detached:

    $ tmuxp load ./apple.yaml -d

    Above:

    • tmuxp loads a file named apple.yaml from the current directory.
    • tmuxp built a tmux session called banana.
    • -d means detached, loading in background.
    $ tmux attach -t banana

    Above: Use tmux directly to attach banana.