Merge pull request #138 from henrisota/feat-uptime-module

feat(uptime): add uptime module based on robhurring/tmux-uptime
This commit is contained in:
Valentin Uveges 2024-03-07 07:29:19 +02:00 committed by GitHub
commit 3207eca990
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 33 additions and 0 deletions

View file

@ -30,6 +30,7 @@
6. [Battery module](#battery-module)
7. [CPU module](#CPU-module)
8. [Weather module](#weather-module)
9. [Uptime module](#uptime-module)
5. [Create a custom module](#create-a-custom-module)
6. [Configuration Examples](#configuration-examples)
1. [Config 1](#config-1)
@ -378,6 +379,27 @@ Add the weather module to the status modules list.
set -g @catppuccin_status_modules_right "... weather ..."
```
### Uptime module
#### Requirements
This module depends on [tmux-uptime](https://github.com/robhurring/tmux-uptime).
#### Install
The prefered way to install tmux-uptime is using [TPM](https://github.com/tmux-plugins/tpm).
#### Configure
Load tmux-uptime after you load catppuccin.
```sh
set -g @plugin 'catppuccin/tmux'
...
set -g @plugin 'robhurring/tmux-uptime'
```
Add the uptime module to the status modules list.
```sh
set -g @catppuccin_status_modules_right "... uptime ..."
```
## Create a custom module
It is possible to add a new custom module or overwrite any of the existing modules.