diff --git a/catppuccin.tmux b/catppuccin.tmux index d0201b0..81b38a4 100755 --- a/catppuccin.tmux +++ b/catppuccin.tmux @@ -248,7 +248,7 @@ load_modules() { done - echo $loaded_modules + echo "$loaded_modules" } main() { diff --git a/custom/README.md b/custom/README.md index 3344923..232df4a 100644 --- a/custom/README.md +++ b/custom/README.md @@ -27,6 +27,6 @@ show_() { # save this module in a file with the name . local module=$( build_status_module "$index" "$icon" "$color" "$text" ) - echo $module + echo "$module" } ``` diff --git a/custom/example.sh b/custom/example.sh index 89f3e66..613caa7 100644 --- a/custom/example.sh +++ b/custom/example.sh @@ -1,10 +1,10 @@ show_example() { - local index=$1 + local index=$1 local icon="$(get_tmux_option "@catppuccin_test_icon" "󰙨")" local color="$(get_tmux_option "@catppuccin_test_color" "$thm_blue")" local text="$(get_tmux_option "@catppuccin_test_text" "It works!")" local module=$( build_status_module "$index" "$icon" "$color" "$text" ) - echo $module + echo "$module" } diff --git a/status/application.sh b/status/application.sh index 0a99a59..56f2e76 100644 --- a/status/application.sh +++ b/status/application.sh @@ -6,5 +6,5 @@ show_application() { local module=$( build_status_module "$index" "$icon" "$color" "$text" ) - echo $module + echo "$module" } diff --git a/status/battery.sh b/status/battery.sh index ecd74a7..7ad978f 100644 --- a/status/battery.sh +++ b/status/battery.sh @@ -19,5 +19,5 @@ show_battery() { local module=$( build_status_module "$index" "$icon" "$color" "$text" ) - echo $module + echo "$module" } diff --git a/status/date_time.sh b/status/date_time.sh index 54070a8..9f7030e 100644 --- a/status/date_time.sh +++ b/status/date_time.sh @@ -6,6 +6,6 @@ show_date_time() { local module=$( build_status_module "$index" "$icon" "$color" "$text" ) - echo $module + echo "$module" } diff --git a/status/directory.sh b/status/directory.sh index 924915e..1ff293d 100644 --- a/status/directory.sh +++ b/status/directory.sh @@ -6,5 +6,5 @@ show_directory() { local module=$( build_status_module "$index" "$icon" "$color" "$text" ) - echo $module + echo "$module" } diff --git a/status/host.sh b/status/host.sh index 4c143c4..5abd71e 100644 --- a/status/host.sh +++ b/status/host.sh @@ -6,5 +6,5 @@ show_host() { local module=$( build_status_module "$index" "$icon" "$color" "$text" ) - echo $module + echo "$module" } diff --git a/status/session.sh b/status/session.sh index a2953ee..58d6c90 100644 --- a/status/session.sh +++ b/status/session.sh @@ -6,5 +6,5 @@ show_session() { local module=$( build_status_module "$index" "$icon" "$color" "$text" ) - echo $module + echo "$module" } diff --git a/status/user.sh b/status/user.sh index 9cf2ea4..1d4d03e 100644 --- a/status/user.sh +++ b/status/user.sh @@ -6,5 +6,5 @@ show_user() { local module=$( build_status_module "$index" "$icon" "$color" "$text" ) - echo $module + echo "$module" }