From 27f02aaf9cb208c5febe09f50af12eb162dc4aa2 Mon Sep 17 00:00:00 2001 From: "Antonio J. Delgado" Date: Sat, 7 May 2022 11:54:42 +0300 Subject: [PATCH] Move ps1 to install of its own --- .gitignore | 1 + bash_rc | 6 ------ 2 files changed, 1 insertion(+), 6 deletions(-) create mode 100644 .gitignore diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..fee48e5 --- /dev/null +++ b/.gitignore @@ -0,0 +1 @@ +gitignore_* diff --git a/bash_rc b/bash_rc index 18081ac..247b642 100755 --- a/bash_rc +++ b/bash_rc @@ -20,12 +20,6 @@ export PATH="${PATH}:${HOME}/bin:/usr/local/bin:/usr/local/sbin" export EDITOR=nano -# My PS1 customization -mkdir -p "${HOME}/src" -if [ ! -d "${HOME}/src/bash_prompt" ]; then - git clone https://github.com/ajdelgado/bash_prompt.git --depth 1 "${HOME}/src/bash_prompt" - cp "${HOME}/src/bash_prompt/bashrc_ps1.sh" "${HOME}/.bashrc_ps1" -rfp -fi # shellcheck disable=SC1091 source "${HOME}/.bashrc_ps1"