diff --git a/Makefile b/Makefile index 8d24705..9df8d5b 100644 --- a/Makefile +++ b/Makefile @@ -31,7 +31,8 @@ backup: ## Back up your applications list. github: ## Clone all projects of a username at once in Github. @echo "Please enter some information" @read -r -p "What is the organization or user name? " owner; \ - cd ~/Projects && gh repo list $$owner --limit 4000 --no-archived | while read -r repository _; do gh repo clone $$repository ; done + read -r -p "What is the topic? " topic; \ + cd ~/Projects && gh repo list $$owner --limit 4000 --no-archived --topic $$topic | while read -r repository _; do gh repo clone $$repository ; done @echo "Check the Projects folder to view all cloned projects." check-scripts: ## Check the shell script. diff --git a/zsh/.zshrc b/zsh/.zshrc index 35c3f8a..818aa1c 100644 --- a/zsh/.zshrc +++ b/zsh/.zshrc @@ -139,14 +139,14 @@ SPACESHIP_PROMPT_ORDER=( git # Git section (git_branch + git_status) exec_time # Execution time line_sep # Line break - vi_mode # Vi-mode indicator + # vi_mode # Vi-mode indicator jobs # Background jobs indicator exit_code # Exit code section char # Prompt character ) SPACESHIP_PROMPT_ADD_NEWLINE=false -SPACESHIP_CHAR_SYMBOL="❯" -SPACESHIP_CHAR_SUFFIX=" " +# SPACESHIP_CHAR_SYMBOL="❯" +# SPACESHIP_CHAR_SUFFIX=" " ### Git via brew configuration export PATH="/usr/local/bin:$PATH"