Merge pull request #117 from edman/patch-1
This commit is contained in:
commit
6ae90fe3fd
2 changed files with 33 additions and 0 deletions
22
README.md
22
README.md
|
@ -29,6 +29,7 @@
|
||||||
5. [Customizing modules](#customizing-modules)
|
5. [Customizing modules](#customizing-modules)
|
||||||
6. [Battery module](#battery-module)
|
6. [Battery module](#battery-module)
|
||||||
7. [CPU module](#CPU-module)
|
7. [CPU module](#CPU-module)
|
||||||
|
8. [Weather module](#weather-module)
|
||||||
5. [Create a custom module](#create-a-custom-module)
|
5. [Create a custom module](#create-a-custom-module)
|
||||||
6. [Configuration Examples](#configuration-examples)
|
6. [Configuration Examples](#configuration-examples)
|
||||||
1. [Config 1](#config-1)
|
1. [Config 1](#config-1)
|
||||||
|
@ -347,6 +348,27 @@ Add the cpu module to the status modules list.
|
||||||
set -g @catppuccin_status_modules_right "... cpu ..."
|
set -g @catppuccin_status_modules_right "... cpu ..."
|
||||||
```
|
```
|
||||||
|
|
||||||
|
### Weather module
|
||||||
|
|
||||||
|
#### Requirements
|
||||||
|
This module depends on [tmux-weather](https://github.com/xamut/tmux-weather).
|
||||||
|
|
||||||
|
#### Install
|
||||||
|
The prefered way to install tmux-cpu is using [TPM](https://github.com/tmux-plugins/tpm).
|
||||||
|
|
||||||
|
#### Configure
|
||||||
|
Load tmux-weather after you load catppuccin.
|
||||||
|
```sh
|
||||||
|
set -g @plugin 'catppuccin/tmux'
|
||||||
|
...
|
||||||
|
set -g @plugin 'xamut/tmux-weather'
|
||||||
|
```
|
||||||
|
|
||||||
|
Add the weather module to the status modules list.
|
||||||
|
```sh
|
||||||
|
set -g @catppuccin_status_modules_right "... weather ..."
|
||||||
|
```
|
||||||
|
|
||||||
## Create a custom module
|
## Create a custom module
|
||||||
|
|
||||||
It is possible to add a new custom module or overrite any of the existing modules.
|
It is possible to add a new custom module or overrite any of the existing modules.
|
||||||
|
|
11
status/weather.sh
Normal file
11
status/weather.sh
Normal file
|
@ -0,0 +1,11 @@
|
||||||
|
# Requires https://github.com/xamut/tmux-weather.
|
||||||
|
show_weather() {
|
||||||
|
local index=$1
|
||||||
|
local icon="$(get_tmux_option "@catppuccin_weather_icon" "")"
|
||||||
|
local color="$(get_tmux_option "@catppuccin_weather_color" "$thm_yellow")"
|
||||||
|
local text="$(get_tmux_option "@catppuccin_weather_text" "#{weather}")"
|
||||||
|
|
||||||
|
local module=$( build_status_module "$index" "$icon" "$color" "$text" )
|
||||||
|
|
||||||
|
echo "$module"
|
||||||
|
}
|
Loading…
Add table
Add a link
Reference in a new issue