From e51a20435d22e06d5a4c989cfbcf431479843866 Mon Sep 17 00:00:00 2001 From: frosty Date: Mon, 27 May 2024 07:15:38 -0400 Subject: [PATCH] remove bash --- bash/.bash_profile | 6 ------ bash/.bashrc | 12 ------------ 2 files changed, 18 deletions(-) delete mode 100644 bash/.bash_profile delete mode 100644 bash/.bashrc diff --git a/bash/.bash_profile b/bash/.bash_profile deleted file mode 100644 index 315e670..0000000 --- a/bash/.bash_profile +++ /dev/null @@ -1,6 +0,0 @@ -# shellcheck disable=SC1091 -[ -f "${XDG_CONFIG_HOME:-$HOME/.config}/shell/environment" ] && . "${XDG_CONFIG_HOME:-$HOME/.config}/shell/environment" - -export HISTFILE="$XDG_STATE_HOME/bash/history" - -[ -f "$HOME/.bashrc" ] && . "$HOME/.bashrc" diff --git a/bash/.bashrc b/bash/.bashrc deleted file mode 100644 index 212d561..0000000 --- a/bash/.bashrc +++ /dev/null @@ -1,12 +0,0 @@ -PS1='%F{blue}%~ %(?.%F{green}.%F{red})%#%f ' - -# shellcheck disable=SC1091 -[ -f "${XDG_CONFIG_HOME:-$HOME/.config}/shell/aliases" ] && . "${XDG_CONFIG_HOME:-$HOME/.config}/shell/aliases" - -if [ -d "${XDG_CONFIG_HOME:-$HOME/.config}/shell/functions" ]; then - for func in "${XDG_CONFIG_HOME:-$HOME/.config}"/shell/functions/*; do - # shellcheck disable=SC1090 - . "$func" - done - unset func -fi