https://github.com/mhausenblas/aws-tmux
AWS status for tmux
https://github.com/mhausenblas/aws-tmux
aws cli tmux tmux-plugins
Last synced: 12 months ago
JSON representation
AWS status for tmux
- Host: GitHub
- URL: https://github.com/mhausenblas/aws-tmux
- Owner: mhausenblas
- License: apache-2.0
- Created: 2019-04-09T15:52:55.000Z (about 7 years ago)
- Default Branch: master
- Last Pushed: 2021-04-08T22:29:59.000Z (about 5 years ago)
- Last Synced: 2025-04-12T18:12:26.432Z (about 1 year ago)
- Topics: aws, cli, tmux, tmux-plugins
- Language: Shell
- Size: 5.86 KB
- Stars: 13
- Watchers: 2
- Forks: 8
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# aws-tmux
> This is WIP, I'm using it in my prod setup but note that this is not an official AWS project or product in any form or shape.
`aws-tmux` is a simple AWS status indicator, currently showing the configured AWS region.
The prerequisites for this `tmux` status indicator to work is that you have the
[AWS CLI](https://aws.amazon.com/cli/) tool installed.
To use this plugin, clone the repo into the `$HOME/.tmux` directory,
then add something like the following to your `~/.tmux.conf`
(here: we configure it to display the AWS status in the right part of the tmux status bar):
```bash
set -g status-right "#(/bin/bash $HOME/.tmux/aws-tmux/aws.tmux)"
```
Note: to make sure that the status is kept up-to-date automatically, add the following to your `~/.tmux.conf` (here: refresh every 5 seconds):
```bash
tmux set status-interval 5
```
Provided as is, use at your own risk! I might turn this into a proper [TPM plugin](https://github.com/tmux-plugins/tpm/blob/master/docs/how_to_create_plugin.md) one day.