From d8dc2eab47c1ef48f215703ee3a311734685bac3 Mon Sep 17 00:00:00 2001 From: Marley Rae Date: Tue, 30 Jan 2024 19:56:02 -0800 Subject: [PATCH] =?UTF-8?q?=F0=9F=9A=B8=20Add=20subtitles=20to=20installer?= =?UTF-8?q?=20groups?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- fish/install.fish | 2 ++ git/install.fish | 3 +++ javascript/install.fish | 5 ++++- script/utils.fish | 4 ++-- tmux/install.fish | 3 +++ 5 files changed, 14 insertions(+), 3 deletions(-) diff --git a/fish/install.fish b/fish/install.fish index 2dc4fc6..6a61691 100755 --- a/fish/install.fish +++ b/fish/install.fish @@ -6,6 +6,8 @@ source "$DOT/node/node_utils.fish" # - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - +print_subtitle "Fish" + execute "fisher install catppuccin/fish" "catppuccin/fish" execute "fisher install decors/fish-colored-man" "fish-colored-man" diff --git a/git/install.fish b/git/install.fish index 83659b4..7cd5f8e 100755 --- a/git/install.fish +++ b/git/install.fish @@ -1,8 +1,11 @@ #!/usr/bin/env fish +source "$DOT/script/utils.fish" source "$DOT/homebrew/brew_utils.fish" # - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - +print_subtitle "Git" + brew_install "Github CLI" "gh" brew_install "Gitmoji" "gitmoji" diff --git a/javascript/install.fish b/javascript/install.fish index 047d626..3a4e84c 100755 --- a/javascript/install.fish +++ b/javascript/install.fish @@ -1,7 +1,10 @@ #!/usr/bin/env fish +source "$DOT/script/utils.fish" source "$DOT/node/node_utils.fish" -# - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - +# - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + +print_subtitle "Javascript/Typescript" npm_install "gulp CLI" "gulp-cli" diff --git a/script/utils.fish b/script/utils.fish index 8ea8c55..bcf68ba 100755 --- a/script/utils.fish +++ b/script/utils.fish @@ -30,11 +30,11 @@ function print_in_purple -a text end function print_title -a text - print_in_purple "\n󰣐 $text\n\n" + print_in_purple "\n 󰣐 $text\n\n" end function print_subtitle -a text - print_in_cyan "  $text\n" + print_in_cyan "\n  $text\n" end function print_success -a text diff --git a/tmux/install.fish b/tmux/install.fish index 781b549..1307a20 100755 --- a/tmux/install.fish +++ b/tmux/install.fish @@ -1,7 +1,10 @@ #!/usr/bin/env fish +source "$DOT/script/utils.fish" source "$DOT/homebrew/brew_utils.fish" # - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - +print_subtitle "tmux" + brew_install "tmux"