Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

tpm plugin #16

Open
wants to merge 6 commits into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
30 changes: 28 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -14,13 +14,37 @@ it to the tmux status line.
This is the first iteration of this plugin, so the updates will be very
frequent. Track this repo for changes, and keep in mind some of them
might cause issues, although I will try to keep them at a minimum, and provide
fixes as soon as possible. Please be patient!
fixes as soon as possible. Please be patient!

If you have any bug reports, please feel free to submit a PR, or a bug report.

## Installing

Clone this repository to your `$HOME/.tmux` directory, and add the following line to your `~/.tmux.conf`:

### Installation with [Tmux Plugin Manager](https://github.com/tmux-plugins/tpm) (recommended)

Add plugin to the list of TPM plugins in `.tmux.conf`:

set -g @plugin 'jonmosco/kube-tmux'

Hit `prefix + I` to fetch the plugin and source it.

You should now the k8s info in your status

### Manual Installation

Clone the repo:

$ git clone https://github.com/jonmosco/kube-tmux ~/clone/path

Add this line to the bottom of `.tmux.conf`:

run-shell ~/clone/path/kube-tmux

Reload TMUX environment:

# type this in terminal
$ tmux source-file ~/.tmux.conf

```bash
set -g status-right "#(/bin/bash $HOME/.tmux/kube.tmux 250 red cyan)"
@@ -57,3 +81,5 @@ Colors for the default text, context, and namespace can be changed:
```

## Contributors

@danwald
6 changes: 5 additions & 1 deletion kube.tmux
100644 → 100755
Original file line number Diff line number Diff line change
@@ -22,6 +22,7 @@ KUBE_TMUX_BINARY="${KUBE_TMUX_BINARY:-kubectl}"
KUBE_TMUX_SYMBOL_ENABLE="${KUBE_TMUX_SYMBOL_ENABLE:-true}"
KUBE_TMUX_SYMBOL_DEFAULT="${KUBE_TMUX_SYMBOL_DEFAULT:-\u2388 }"
KUBE_TMUX_SYMBOL_USE_IMG="${KUBE_TMUX_SYMBOL_USE_IMG:-false}"
KUBE_TMUX_CTX_ENABLE="${KUBE_TMUX_CTX_ENABLE:-true}"
KUBE_TMUX_NS_ENABLE="${KUBE_TMUX_NS_ENABLE:-true}"
KUBE_TMUX_DIVIDER="${KUBE_TMUX_DIVIDER-:}"
KUBE_TMUX_SYMBOL_COLOR="${KUBE_TMUX_SYMBOL_COLOR-blue}"
@@ -30,6 +31,7 @@ KUBE_TMUX_NS_COLOR="${KUBE_TMUX_NS_COLOR-cyan}"
KUBE_TMUX_KUBECONFIG_CACHE="${KUBECONFIG}"
KUBE_TMUX_UNAME=$(uname)
KUBE_TMUX_LAST_TIME=0
CURRENT_DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )"

_kube_tmux_binary_check() {
command -v $1 >/dev/null
@@ -138,7 +140,9 @@ kube_tmux() {
fi

# Context
KUBE_TMUX+="#[fg=${2}]${KUBE_TMUX_CONTEXT}"
if [[ "${KUBE_TMUX_CTX_ENABLE}" == true ]]; then
KUBE_TMUX+="#[fg=${2}]${KUBE_TMUX_CONTEXT}"
fi

# Namespace
if [[ "${KUBE_TMUX_NS_ENABLE}" == true ]]; then