tmux-catppuccin-coal/status/weather.sh
Edman P. Anjos 50d5fe6c6e feat(weather): add weather module for xamut/tmux-weather
Weather module
Requirements
This module depends on https://github.com/xamut/tmux-weather.

Install
The preferred way to install tmux-weather is using TPM.

Configure
Load tmux-weather after you load catppuccin.

set -g @plugin 'catppuccin/tmux'
...
set -g @plugin 'xamut/tmux-weather'

Add the weather module to the status modules list.

set -g @catppuccin_status_modules" "... weather ..."
2024-01-26 21:29:26 +01:00

11 lines
397 B
Bash

# 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"
}