Skip to content

percygt/tmuxst

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

6 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Tmuxst

A slick status bar for tmux

✨ Features

  • Integrations with gitmux for git status

🛠️ Requirements

💻 Install

Installation with tpm

Add the following line to your .tmux.conf.

set -g @plugin 'percygt/tmuxst'

Installation via nix overlay

Add tmuxst as a flake input:

{
  inputs = {
    tmuxst.url = "github:percygt/tmuxst";
  };
  outputs = { tmuxst, ... }: { };
}

Then, use the flake's overlay attribute:

{
  outputs = { tmuxst, nixpkgs, ... }:
  let
    pkgs = import nixpkgs {
      system = "x86_64-linux";
      overlays = [ tmuxst.overlays.default ];
    };
  in
    # You can now reference pkgs.tmuxPlugins.tmuxst.
  { }
}

After that, tmuxst can now be used as a normal tmux plugin within the nixpkgs.

⚙️ Customization

Variable Default value Description
@color1 "#96c7f1" WHITE
@color2 "#aaa8af" GREY
@color3 "#000000" BLACK
@color4 "#120d22" NOCTURNE
@color5 "#0e1a60" AZURE
@color6 "#b4befe" LAVENDER
@color7 "#fab387" PEACH

License

MIT

Releases

No releases published

Packages

No packages published