all icons
This commit is contained in:
parent
1820d433b5
commit
334d4d52a2
1 changed files with 15 additions and 3 deletions
|
@ -85,6 +85,18 @@ main() {
|
||||||
host="$(get_tmux_option "@catppuccin_host" "off")"
|
host="$(get_tmux_option "@catppuccin_host" "off")"
|
||||||
readonly host
|
readonly host
|
||||||
|
|
||||||
|
local directory_icon
|
||||||
|
directory_icon="$(get_tmux_option "@catppuccin_directory_icon" "")"
|
||||||
|
readonly directory_icon
|
||||||
|
|
||||||
|
local window_icon
|
||||||
|
window_icon="$(get_tmux_option "@catppuccin_window_icon" "")"
|
||||||
|
readonly window_icon
|
||||||
|
|
||||||
|
local session_icon
|
||||||
|
session_icon="$(get_tmux_option "@catppuccin_session_icon" "")"
|
||||||
|
readonly session_icon
|
||||||
|
|
||||||
local host_icon
|
local host_icon
|
||||||
host_icon="$(get_tmux_option "@catppuccin_host_icon" "")"
|
host_icon="$(get_tmux_option "@catppuccin_host_icon" "")"
|
||||||
readonly host_icon
|
readonly host_icon
|
||||||
|
@ -99,13 +111,13 @@ main() {
|
||||||
|
|
||||||
# These variables are the defaults so that the setw and set calls are easier to parse.
|
# These variables are the defaults so that the setw and set calls are easier to parse.
|
||||||
local show_directory
|
local show_directory
|
||||||
readonly show_directory="#[fg=$thm_pink,bg=$thm_bg,nobold,nounderscore,noitalics]$right_separator#[fg=$thm_bg,bg=$thm_pink,nobold,nounderscore,noitalics] #[fg=$thm_fg,bg=$thm_gray] #{b:pane_current_path} #{?client_prefix,#[fg=$thm_red]"
|
readonly show_directory="#[fg=$thm_pink,bg=$thm_bg,nobold,nounderscore,noitalics]$right_separator#[fg=$thm_bg,bg=$thm_pink,nobold,nounderscore,noitalics]$directory_icon #[fg=$thm_fg,bg=$thm_gray] #{b:pane_current_path} #{?client_prefix,#[fg=$thm_red]"
|
||||||
|
|
||||||
local show_window
|
local show_window
|
||||||
readonly show_window="#[fg=$thm_pink,bg=$thm_bg,nobold,nounderscore,noitalics]$right_separator#[fg=$thm_bg,bg=$thm_pink,nobold,nounderscore,noitalics] #[fg=$thm_fg,bg=$thm_gray] #W #{?client_prefix,#[fg=$thm_red]"
|
readonly show_window="#[fg=$thm_pink,bg=$thm_bg,nobold,nounderscore,noitalics]$right_separator#[fg=$thm_bg,bg=$thm_pink,nobold,nounderscore,noitalics]$window_icon #[fg=$thm_fg,bg=$thm_gray] #W #{?client_prefix,#[fg=$thm_red]"
|
||||||
|
|
||||||
local show_session
|
local show_session
|
||||||
readonly show_session="#[fg=$thm_green]}#[bg=$thm_gray]$right_separator#{?client_prefix,#[bg=$thm_red],#[bg=$thm_green]}#[fg=$thm_bg] #[fg=$thm_fg,bg=$thm_gray] #S "
|
readonly show_session="#[fg=$thm_green]}#[bg=$thm_gray]$right_separator#{?client_prefix,#[bg=$thm_red],#[bg=$thm_green]}#[fg=$thm_bg]$session_icon #[fg=$thm_fg,bg=$thm_gray] #S "
|
||||||
|
|
||||||
local show_directory_in_window_status
|
local show_directory_in_window_status
|
||||||
readonly show_directory_in_window_status="#[fg=$thm_bg,bg=$thm_blue] #I #[fg=$thm_fg,bg=$thm_gray] #{b:pane_current_path} "
|
readonly show_directory_in_window_status="#[fg=$thm_bg,bg=$thm_blue] #I #[fg=$thm_fg,bg=$thm_gray] #{b:pane_current_path} "
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue