Compare commits
2 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 1b81ee39fb | |||
| 0cc0dbba8c |
@@ -1,5 +1,7 @@
|
|||||||
|
# starship.toml - Fully riced modern prompt config aligned with Carbonfox theme
|
||||||
|
|
||||||
format = """
|
format = """
|
||||||
$username$hostname$directory$git_branch$git_state$git_status$cmd_duration$line_break\
|
$os$username$hostname$directory$git_branch$git_state$git_status$python$nodejs$rust$golang$cmd_duration$line_break\
|
||||||
$character"""
|
$character"""
|
||||||
|
|
||||||
# Wait 10 milliseconds for starship to check files under the current directory.
|
# Wait 10 milliseconds for starship to check files under the current directory.
|
||||||
@@ -8,75 +10,93 @@ scan_timeout = 10
|
|||||||
# Disable the blank line at the start of the prompt
|
# Disable the blank line at the start of the prompt
|
||||||
add_newline = true
|
add_newline = true
|
||||||
|
|
||||||
# # Define custom colors
|
|
||||||
# [palettes.foo]
|
|
||||||
# # Overwrite existing color
|
|
||||||
# blue = '21'
|
|
||||||
# # Define new color
|
|
||||||
# mustard = '#af8700'
|
|
||||||
|
|
||||||
[directory]
|
|
||||||
style = "purple"
|
|
||||||
truncation_length = 3
|
|
||||||
format = ': [$path]($style)[$read_only]($read_only_style) '
|
|
||||||
truncation_symbol = ".../"
|
|
||||||
truncate_to_repo =true
|
|
||||||
|
|
||||||
[character]
|
|
||||||
success_symbol = '[❯](bold green)'
|
|
||||||
# success_symbol = '[➜](bold green)'
|
|
||||||
error_symbol = '[✗](bold purple) '
|
|
||||||
vimcmd_symbol = "[❮](green)"
|
|
||||||
|
|
||||||
[git_branch]
|
|
||||||
symbol = '🌱 '
|
|
||||||
# truncation_length = 4
|
|
||||||
truncation_symbol = ''
|
|
||||||
format = '[$symbol$branch]($style) '
|
|
||||||
|
|
||||||
[git_status]
|
|
||||||
conflicted = '🏳'
|
|
||||||
ahead = '🏎💨'
|
|
||||||
behind = '😰'
|
|
||||||
diverged = '😵'
|
|
||||||
up_to_date = '✓'
|
|
||||||
untracked = '🤷'
|
|
||||||
stashed = '📦'
|
|
||||||
modified = '📝'
|
|
||||||
staged = '[++\($count\)](green)'
|
|
||||||
renamed = '👅'
|
|
||||||
deleted = '🗑'
|
|
||||||
|
|
||||||
[git_state]
|
|
||||||
format = '[\($state( $progress_current of $progress_total)\)]($style) '
|
|
||||||
cherry_pick = '[🍒 PICKING](bold red)'
|
|
||||||
|
|
||||||
[cmd_duration]
|
|
||||||
min_time = 100
|
|
||||||
format = 'underwent [$duration](bold yellow)'
|
|
||||||
|
|
||||||
[os]
|
[os]
|
||||||
disabled = false
|
disabled = false
|
||||||
|
style = "bold white"
|
||||||
|
|
||||||
[username]
|
[username]
|
||||||
style_user = 'white bold'
|
style_user = "bold #be95ff" # Carbonfox purple
|
||||||
style_root = 'black bold'
|
style_root = "bold red"
|
||||||
format = '[$user]($style) '
|
format = "[$user]($style)"
|
||||||
disabled = false
|
disabled = false
|
||||||
show_always = true
|
show_always = true
|
||||||
|
|
||||||
[hostname]
|
[hostname]
|
||||||
ssh_only = false
|
ssh_only = false
|
||||||
format = '@(bold blue) [$hostname](bold red) '
|
style = "bold #33b1ff" # Carbonfox blue/cyan
|
||||||
trim_at = '.ciena.com'
|
format = "@[$hostname]($style) "
|
||||||
disabled = false
|
disabled = false
|
||||||
|
|
||||||
|
[directory]
|
||||||
|
style = "bold #08bdba" # Carbonfox teal
|
||||||
|
format = "in [ $path]($style)[$read_only]($read_only_style) "
|
||||||
|
truncation_length = 3
|
||||||
|
truncation_symbol = "…/"
|
||||||
|
truncate_to_repo = true
|
||||||
|
read_only = " "
|
||||||
|
read_only_style = "bold red"
|
||||||
|
|
||||||
|
[character]
|
||||||
|
success_symbol = "[❯](bold #25be6a)" # Carbonfox green
|
||||||
|
error_symbol = "[❯](bold #ee5396)" # Carbonfox pink/red
|
||||||
|
vimcmd_symbol = "[❮](bold #08bdba)" # Carbonfox teal
|
||||||
|
|
||||||
|
[git_branch]
|
||||||
|
symbol = "🌱 "
|
||||||
|
style = "bold #ee5396" # Carbonfox pink
|
||||||
|
format = "on [$symbol$branch]($style) "
|
||||||
|
truncation_symbol = ""
|
||||||
|
|
||||||
|
[git_status]
|
||||||
|
style = "bold #ee5396"
|
||||||
|
format = "([$all_status$ahead_behind]($style) )"
|
||||||
|
conflicted = "🏳"
|
||||||
|
ahead = "🏎💨"
|
||||||
|
behind = "😰"
|
||||||
|
diverged = "😵"
|
||||||
|
untracked = "🤷"
|
||||||
|
stashed = "📦"
|
||||||
|
modified = "📝"
|
||||||
|
staged = '[++\($count\)](green)'
|
||||||
|
renamed = "👅"
|
||||||
|
deleted = "🗑"
|
||||||
|
|
||||||
|
[git_state]
|
||||||
|
format = "([$state( $progress_current of $progress_total)]($style) )"
|
||||||
|
cherry_pick = "[🍒 PICKING](bold red)"
|
||||||
|
|
||||||
|
[python]
|
||||||
|
symbol = "🐍 "
|
||||||
|
style = "bold #3ddbd9"
|
||||||
|
format = "via [$symbol$version]($style) "
|
||||||
|
|
||||||
|
[nodejs]
|
||||||
|
symbol = " "
|
||||||
|
style = "bold #25be6a"
|
||||||
|
format = "via [$symbol$version]($style) "
|
||||||
|
|
||||||
|
[rust]
|
||||||
|
symbol = "🦀 "
|
||||||
|
style = "bold #ff9e64"
|
||||||
|
format = "via [$symbol$version]($style) "
|
||||||
|
|
||||||
|
[golang]
|
||||||
|
symbol = " "
|
||||||
|
style = "bold #78a9ff"
|
||||||
|
format = "via [$symbol$version]($style) "
|
||||||
|
|
||||||
|
[cmd_duration]
|
||||||
|
min_time = 100
|
||||||
|
style = "bold #e0af68" # Carbonfox yellow/orange
|
||||||
|
format = "underwent [$duration]($style) "
|
||||||
|
|
||||||
[status]
|
[status]
|
||||||
style = 'bg:blue'
|
style = "bg:blue"
|
||||||
symbol = '🔴 '
|
symbol = "🔴 "
|
||||||
success_symbol = '🟢 SUCCESS'
|
success_symbol = "🟢 SUCCESS"
|
||||||
format = '[\[$symbol$common_meaning$signal_name$maybe_int\]]($style) '
|
format = '[[\[$symbol$common_meaning$signal_name$maybe_int\]]($style) ]'
|
||||||
map_symbol = true
|
map_symbol = true
|
||||||
disabled = false
|
disabled = true
|
||||||
|
|
||||||
[conda]
|
[conda]
|
||||||
format = "[$symbol$environment]($style) "
|
format = "[$symbol$environment]($style) "
|
||||||
|
|||||||
+37
-35
@@ -71,29 +71,31 @@ tmux_conf_24b_colour=auto
|
|||||||
# - tmux_conf_theme_synchronized
|
# - tmux_conf_theme_synchronized
|
||||||
tmux_conf_theme=enabled
|
tmux_conf_theme=enabled
|
||||||
|
|
||||||
color_yellow="yellow"
|
# Carbonfox Color Palette
|
||||||
color_reg="red"
|
color_bg="#161616"
|
||||||
color_green="green"
|
color_fg="#f2f4f8"
|
||||||
color_teal="teal"
|
color_black="#282828"
|
||||||
color_white="white"
|
color_gray="#353535"
|
||||||
color_pink="pink"
|
color_light_gray="#484848"
|
||||||
color_black="black"
|
color_red="#ee5396"
|
||||||
color_blue="blue"
|
color_green="#25be6a"
|
||||||
color_mauve="#FFE3E3"
|
color_teal="#3ddbd9"
|
||||||
color_offwhite="#F9F9F2"
|
color_blue="#78a9ff"
|
||||||
color_grey="grey"
|
color_purple="#be95ff"
|
||||||
|
color_cyan="#33b1ff"
|
||||||
|
color_white="#dfdfe0"
|
||||||
|
|
||||||
color_accent="blue"
|
color_accent="$color_blue"
|
||||||
color_primary="default"
|
color_primary="default"
|
||||||
color_secondary="$color_grey"
|
color_secondary="$color_gray"
|
||||||
color_fg_primary="default"
|
color_fg_primary="$color_fg"
|
||||||
color_fg_secondary="$color_offwhite"
|
color_fg_secondary="$color_white"
|
||||||
|
|
||||||
window_status_current_bg="default"
|
window_status_current_bg="default"
|
||||||
window_status_current_fg="$color_accent"
|
window_status_current_fg="$color_accent"
|
||||||
|
|
||||||
theme_mode_bg="$color_accent"
|
theme_mode_bg="$color_accent"
|
||||||
theme_mode_fg="$color_fg_primary"
|
theme_mode_fg="$color_bg"
|
||||||
|
|
||||||
tmux_conf_theme_window_fg="$color_fg_primary"
|
tmux_conf_theme_window_fg="$color_fg_primary"
|
||||||
# window style
|
# window style
|
||||||
@@ -172,7 +174,7 @@ tmux_conf_theme_window_status_attr="none"
|
|||||||
# tmux_conf_theme_window_status_format="#I #W#{?#{||:#{window_bell_flag},#{window_zoomed_flag}}, ,}#{?window_bell_flag,!,}#{?window_zoomed_flag,Z,}"
|
# tmux_conf_theme_window_status_format="#I #W#{?#{||:#{window_bell_flag},#{window_zoomed_flag}}, ,}#{?window_bell_flag,!,}#{?window_zoomed_flag,Z,}"
|
||||||
#tmux_conf_theme_window_status_format="#{circled_window_index} #W#{?#{||:#{window_bell_flag},#{window_zoomed_flag}}, ,}#{?window_bell_flag,!,}#{?window_zoomed_flag,Z,}"
|
#tmux_conf_theme_window_status_format="#{circled_window_index} #W#{?#{||:#{window_bell_flag},#{window_zoomed_flag}}, ,}#{?window_bell_flag,!,}#{?window_zoomed_flag,Z,}"
|
||||||
# tmux_conf_theme_window_status_format=" #I: #(despell -e #W) #W #{?#{||:#{window_bell_flag},#{window_zoomed_flag}}, ,}#{?window_bell_flag,🔔,}#{?window_zoomed_flag,🔍,}"
|
# tmux_conf_theme_window_status_format=" #I: #(despell -e #W) #W #{?#{||:#{window_bell_flag},#{window_zoomed_flag}}, ,}#{?window_bell_flag,🔔,}#{?window_zoomed_flag,🔍,}"
|
||||||
tmux_conf_theme_window_status_format=" #I:#W #{?#{||:#{window_bell_flag},#{window_zoomed_flag}}, ,}#{?window_bell_flag,🔔,}#{?window_zoomed_flag,🔍,}"
|
tmux_conf_theme_window_status_format="#[fg=$color_gray,bg=default]#[fg=$color_fg,bg=$color_gray]#I: #(bash /Users/jsarthak/dotfiles/tmux/tmux-window-name.sh '#W' '#{pane_current_path}')#{?#{||:#{window_bell_flag},#{window_zoomed_flag}}, ,}#{?window_bell_flag,🔔,}#{?window_zoomed_flag,🔍,}#[fg=$color_gray,bg=default]"
|
||||||
|
|
||||||
# window current status style
|
# window current status style
|
||||||
# - built-in variables are:
|
# - built-in variables are:
|
||||||
@@ -187,7 +189,7 @@ tmux_conf_theme_window_status_format=" #I:#W #{?#{||:#{window_bell_flag},#{windo
|
|||||||
# tmux_conf_theme_window_status_current_format="#I #W#{?#{||:#{window_bell_flag},#{window_zoomed_flag}}, ,}#{?window_bell_flag,!,}#{?window_zoomed_flag,Z,}"
|
# tmux_conf_theme_window_status_current_format="#I #W#{?#{||:#{window_bell_flag},#{window_zoomed_flag}}, ,}#{?window_bell_flag,!,}#{?window_zoomed_flag,Z,}"
|
||||||
#tmux_conf_theme_window_status_current_format="#{circled_window_index} #W#{?#{||:#{window_bell_flag},#{window_zoomed_flag}}, ,}#{?window_bell_flag,!,}#{?window_zoomed_flag,Z,}"
|
#tmux_conf_theme_window_status_current_format="#{circled_window_index} #W#{?#{||:#{window_bell_flag},#{window_zoomed_flag}}, ,}#{?window_bell_flag,!,}#{?window_zoomed_flag,Z,}"
|
||||||
# tmux_conf_theme_window_status_current_format="#I: #(despell -e #W) #[fg=$tmux_conf_theme_window_status_current_fg]#W*#{?#{||:#{window_bell_flag},#{window_zoomed_flag}}, ,}#{?window_bell_flag,🔔,}#{?window_zoomed_flag,🔍,}"
|
# tmux_conf_theme_window_status_current_format="#I: #(despell -e #W) #[fg=$tmux_conf_theme_window_status_current_fg]#W*#{?#{||:#{window_bell_flag},#{window_zoomed_flag}}, ,}#{?window_bell_flag,🔔,}#{?window_zoomed_flag,🔍,}"
|
||||||
tmux_conf_theme_window_status_current_format="#I:#[fg=$tmux_conf_theme_window_status_current_fg]#W#{?#{||:#{window_bell_flag},#{window_zoomed_flag}}, ,}#{?window_bell_flag,🔔,}#{?window_zoomed_flag,🔍,}"
|
tmux_conf_theme_window_status_current_format="#[fg=$color_accent,bg=default]#[fg=$color_bg,bg=$color_accent,bold]#I: #(bash /Users/jsarthak/dotfiles/tmux/tmux-window-name.sh '#W' '#{pane_current_path}')#{?#{||:#{window_bell_flag},#{window_zoomed_flag}}, ,}#{?window_bell_flag,🔔,}#{?window_zoomed_flag,🔍,}#[fg=$color_accent,bg=default]"
|
||||||
|
|
||||||
tmux_conf_theme_window_status_current_fg="$window_status_current_fg"
|
tmux_conf_theme_window_status_current_fg="$window_status_current_fg"
|
||||||
tmux_conf_theme_window_status_current_bg="$window_status_current_bg"
|
tmux_conf_theme_window_status_current_bg="$window_status_current_bg"
|
||||||
@@ -210,9 +212,9 @@ tmux_conf_theme_window_status_last_attr="bold"
|
|||||||
|
|
||||||
# status left/right sections separators
|
# status left/right sections separators
|
||||||
tmux_conf_theme_left_separator_main=""
|
tmux_conf_theme_left_separator_main=""
|
||||||
tmux_conf_theme_left_separator_sub="|"
|
tmux_conf_theme_left_separator_sub=""
|
||||||
tmux_conf_theme_right_separator_main=""
|
tmux_conf_theme_right_separator_main=""
|
||||||
tmux_conf_theme_right_separator_sub="\u2022"
|
tmux_conf_theme_right_separator_sub=""
|
||||||
# tmux_conf_theme_left_separator_main='\uE0B0' # /!\ you don't need to install Powerline
|
# tmux_conf_theme_left_separator_main='\uE0B0' # /!\ you don't need to install Powerline
|
||||||
# tmux_conf_theme_left_separator_sub='\uE0B1' # yku only need fonts patched with
|
# tmux_conf_theme_left_separator_sub='\uE0B1' # yku only need fonts patched with
|
||||||
# tmux_conf_theme_right_separator_main='\uE0B2' # Powerline symbols or the standalone
|
# tmux_conf_theme_right_separator_main='\uE0B2' # Powerline symbols or the standalone
|
||||||
@@ -247,18 +249,18 @@ tmux_conf_theme_right_separator_sub="\u2022"
|
|||||||
# - #{username}
|
# - #{username}
|
||||||
# - #{username_ssh}
|
# - #{username_ssh}
|
||||||
|
|
||||||
tmux_conf_theme_status_left=" [#S]"
|
tmux_conf_theme_status_left=" ❐ #S #[fg=$color_accent,bg=default,none]"
|
||||||
tmux_conf_theme_status_right=" #{prefix}#{mouse}#{pairing}#{synchronized} |\u2022 #{username}#{root} |\u2022 #{hostname} |\u2022 ↑ #{?uptime_y, #{uptime_y}y,}#{?uptime_d, #{uptime_d}d,}#{?uptime_h, #{uptime_h}h,}#{?uptime_m, #{uptime_m}m,} "
|
tmux_conf_theme_status_right=" #{prefix}#{mouse}#{pairing}#{synchronized} |#[fg=default,bg=default] #[fg=$color_secondary,bg=default,none]#[fg=$color_fg,bg=$color_secondary,none] #{?uptime_d,#{uptime_d}d,}#{?uptime_h,#{uptime_h}h,}#{?uptime_m,#{uptime_m}m,}#[fg=$color_secondary,bg=default,none] |#[fg=default,bg=default] #[fg=$color_purple,bg=default,none]#[fg=$color_bg,bg=$color_purple,bold] #{username}#{root}@#{hostname}#[fg=$color_purple,bg=default,none] "
|
||||||
|
|
||||||
# status left style
|
# status left style
|
||||||
tmux_conf_theme_status_left_fg="$color_black,$color_fg_primary,$color_fg_primary"
|
tmux_conf_theme_status_left_fg="$color_bg"
|
||||||
tmux_conf_theme_status_left_bg="$color_primary,$color_primary,$color_primary"
|
tmux_conf_theme_status_left_bg="$color_accent"
|
||||||
tmux_conf_theme_status_left_attr="bold,none,none"
|
tmux_conf_theme_status_left_attr="bold"
|
||||||
|
|
||||||
# status right style
|
# status right style
|
||||||
tmux_conf_theme_status_right_fg="$color_fg_primary,$color_fg_primary,$color_fg_primary,$color_fg_primary"
|
tmux_conf_theme_status_right_fg="$color_red,$color_fg,$color_bg"
|
||||||
tmux_conf_theme_status_right_bg="$color_primary,$color_primary,$color_primary,$color_primary"
|
tmux_conf_theme_status_right_bg="default,$color_secondary,$color_purple"
|
||||||
tmux_conf_theme_status_right_attr="bold,none,bold,none"
|
tmux_conf_theme_status_right_attr="bold,none,bold"
|
||||||
|
|
||||||
# pairing indicator
|
# pairing indicator
|
||||||
tmux_conf_theme_pairing="⚇" # U+2687
|
tmux_conf_theme_pairing="⚇" # U+2687
|
||||||
@@ -267,14 +269,14 @@ tmux_conf_theme_pairing_bg="none"
|
|||||||
tmux_conf_theme_pairing_attr="none"
|
tmux_conf_theme_pairing_attr="none"
|
||||||
|
|
||||||
# prefix indicator
|
# prefix indicator
|
||||||
tmux_conf_theme_prefix="⌨" # U+2328
|
tmux_conf_theme_prefix=" "
|
||||||
tmux_conf_theme_prefix_fg="none"
|
tmux_conf_theme_prefix_fg="$color_red"
|
||||||
tmux_conf_theme_prefix_bg="none"
|
tmux_conf_theme_prefix_bg="none"
|
||||||
tmux_conf_theme_prefix_attr="none"
|
tmux_conf_theme_prefix_attr="bold"
|
||||||
|
|
||||||
# mouse indicator
|
# mouse indicator
|
||||||
tmux_conf_theme_mouse="↗" # U+2197
|
tmux_conf_theme_mouse=" "
|
||||||
tmux_conf_theme_mouse_fg="none"
|
tmux_conf_theme_mouse_fg="$color_teal"
|
||||||
tmux_conf_theme_mouse_bg="none"
|
tmux_conf_theme_mouse_bg="none"
|
||||||
tmux_conf_theme_mouse_attr="none"
|
tmux_conf_theme_mouse_attr="none"
|
||||||
|
|
||||||
@@ -285,8 +287,8 @@ tmux_conf_theme_root_bg="none"
|
|||||||
tmux_conf_theme_root_attr="bold,blink"
|
tmux_conf_theme_root_attr="bold,blink"
|
||||||
|
|
||||||
# synchronized indicator
|
# synchronized indicator
|
||||||
tmux_conf_theme_synchronized="⚏" # U+268F
|
tmux_conf_theme_synchronized=" "
|
||||||
tmux_conf_theme_synchronized_fg="none"
|
tmux_conf_theme_synchronized_fg="$color_green"
|
||||||
tmux_conf_theme_synchronized_bg="none"
|
tmux_conf_theme_synchronized_bg="none"
|
||||||
tmux_conf_theme_synchronized_attr="none"
|
tmux_conf_theme_synchronized_attr="none"
|
||||||
|
|
||||||
|
|||||||
Executable
+86
@@ -0,0 +1,86 @@
|
|||||||
|
#!/bin/bash
|
||||||
|
# tmux-window-name.sh - Auto emoji/icon plugin replacement for tmux window titles
|
||||||
|
# Zero dependencies, fast shell-based script mapping commands to Nerd Font glyphs.
|
||||||
|
|
||||||
|
cmd="$1"
|
||||||
|
path="$2"
|
||||||
|
|
||||||
|
# Get basename of the directory
|
||||||
|
base_dir=$(basename "$path")
|
||||||
|
if [ "$base_dir" = "$USER" ]; then
|
||||||
|
base_dir="~"
|
||||||
|
fi
|
||||||
|
|
||||||
|
icon=""
|
||||||
|
name="$cmd"
|
||||||
|
|
||||||
|
case "$cmd" in
|
||||||
|
zsh|bash|sh|fish|ksh)
|
||||||
|
icon=""
|
||||||
|
name="$base_dir"
|
||||||
|
;;
|
||||||
|
nvim|vim|vi)
|
||||||
|
icon=""
|
||||||
|
name="nvim ($base_dir)"
|
||||||
|
;;
|
||||||
|
emacs)
|
||||||
|
icon=""
|
||||||
|
name="emacs ($base_dir)"
|
||||||
|
;;
|
||||||
|
git|lazygit|gh)
|
||||||
|
icon=""
|
||||||
|
name="${cmd} ($base_dir)"
|
||||||
|
;;
|
||||||
|
node|npm|yarn|pnpm|bun)
|
||||||
|
icon=""
|
||||||
|
name="${cmd} ($base_dir)"
|
||||||
|
;;
|
||||||
|
python|python3|pip|ipython)
|
||||||
|
icon=""
|
||||||
|
;;
|
||||||
|
docker|docker-compose|lazydocker)
|
||||||
|
icon=""
|
||||||
|
name="${cmd} ($base_dir)"
|
||||||
|
;;
|
||||||
|
cargo|rustc|rustup)
|
||||||
|
icon=""
|
||||||
|
name="${cmd} ($base_dir)"
|
||||||
|
;;
|
||||||
|
go)
|
||||||
|
icon=""
|
||||||
|
;;
|
||||||
|
htop|top|btop)
|
||||||
|
icon=""
|
||||||
|
;;
|
||||||
|
curl|wget)
|
||||||
|
icon=""
|
||||||
|
;;
|
||||||
|
man)
|
||||||
|
icon=""
|
||||||
|
;;
|
||||||
|
less|more)
|
||||||
|
icon="📄"
|
||||||
|
;;
|
||||||
|
make|cmake|just)
|
||||||
|
icon="🛠️"
|
||||||
|
;;
|
||||||
|
ssh|scp|sftp|mosh-client|mosh)
|
||||||
|
icon="🔑"
|
||||||
|
;;
|
||||||
|
sudo)
|
||||||
|
icon="🔒"
|
||||||
|
;;
|
||||||
|
terraform|tofu)
|
||||||
|
icon=""
|
||||||
|
name="${cmd} ($base_dir)"
|
||||||
|
;;
|
||||||
|
grep|rg|find|fd)
|
||||||
|
icon="🔍"
|
||||||
|
;;
|
||||||
|
sleep)
|
||||||
|
icon="💤"
|
||||||
|
;;
|
||||||
|
esac
|
||||||
|
|
||||||
|
# Output the formatted name
|
||||||
|
echo "$icon $name"
|
||||||
Reference in New Issue
Block a user