Metadata-Version: 2.1
Name: terminator-layout-builder
Version: 0.1.0
Summary: A Terminator Terminal Layout Builder
Home-page: https://github.com/faizshukri/terminator-layout-builder
Author: Faiz Shukri
Author-email: faizshukri90@gmail.com
License: MIT
Description: # Terminator Layout Builder
        
        Manage [Terminator](https://terminator-gtk3.readthedocs.io/en/latest/) layouts easily using YAML file.
        
        ![Terminator Layout Builder](https://s3-ap-southeast-1.amazonaws.com/com.faizsh.misc/terminator-layout-builder.gif#1)
        
        ## Installation
        
        ```bash
        pip install terminator-layout-builder
        ```
        
        ## Usage
        
        Create a layout file in `~/.config/terminator/layout.yaml`.
        
        The file can contain a layout as simplest as this.
        
        ```yaml
        layoutA:
          - cmd: pwd
        ```
        
        or as complex as this
        
        ```yaml
        layoutA:
          - cmd: pwd
        
        layoutB:
          # A window
          - root: "/home/user" # root for this window
            vertical:
              panes:
                - cmd: pwd
                - cmd: whoami
        
          # Another window
          - root: "/tmp"
            tabs:
              labels:
                - Logs
                - Services
                - Monitoring
              items:
                - horizontal:
                    ratio: 0.5
                    panes:
                      - vertical:
                          ratio: 0.67
                          panes:
                            - title: "some title"
                              cmd: pwd
                            - root: "~" # overwrite window's root
                              cmd: pwd
                      - cmd: tail -f /var/log/syslog
                - horizontal:
                    panes:
                      - cmd: tail -f /dev/null
                      - cmd: tail -f /dev/null
                - cmd: htop
        ```
        
        Next, run `tlb` and the layouts will be merge into your Terminator config, and you can start your layout by using Terminator Layout Launcher.
        
        Alternatively, you can also use `tlb -l <layout>` (alias to `terminator -m -b -l <layout>`) to launch your Terminator with the layout.
        
        ## Inspirations
        
        - [Tmuxinator](https://github.com/tmuxinator/tmuxinator)
        - [Terminator layout builder gist](https://gist.github.com/bancek/3838394)
        
Platform: UNKNOWN
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 3
Classifier: Operating System :: OS Independent
Requires-Python: >=3.6
Description-Content-Type: text/markdown
