New Research: Supply Chain Attack on Axios Pulls Malicious Dependency from npm.Details →
Socket
Book a DemoSign in
Socket

tmux-layout

Package Overview
Dependencies
Maintainers
1
Versions
7
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

tmux-layout

Manage tmux layouts in JSON files

latest
Source
npmnpm
Version
1.1.2
Version published
Maintainers
1
Created
Source

tmux-layout

A tiny utitility to generate tmux commands from a layout description in JSON format.

Installation

Make sure you have installed node.js including NPM

 sudo npm install -g tmux-layout

Usage

Start a new tmux session with a given layout

tmux-layout # uses tmux.json file in current directory
tmux-layout /path/to/layout.json

Print out the "compiled" tmux command

tmux-layout -c /path/to/layout.json

Layout Files

The layout files are kept very simple, yet. The following example file should suffice for documentation purporses:

{
  "title": "tmux-layout (Purescript)",
  "windows": [
    {
      "title": "Main",
      "layout": {
        "left": {
          "top": "psci",
          "bottom": "git status"
        },
        "right": "ls -al"
      }
    }
  ]
}

FAQs

Package last updated on 14 Aug 2014

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts