From a13cbc3a44d9059dd218f5546ff3b6707f9f2eda Mon Sep 17 00:00:00 2001
From: ObeseTermite <termite@mudf.lat>
Date: Thu, 11 Jul 2024 23:19:29 -0700
Subject: [PATCH] Added etc/ directory for config files in that directory, and
 added the systemwide bashrc

---
 etc/bash.bashrc                | 21 +++++++++++++++++++++
 pacman.conf => etc/pacman.conf |  0
 2 files changed, 21 insertions(+)
 create mode 100644 etc/bash.bashrc
 rename pacman.conf => etc/pacman.conf (100%)

diff --git a/etc/bash.bashrc b/etc/bash.bashrc
new file mode 100644
index 0000000..848a6b6
--- /dev/null
+++ b/etc/bash.bashrc
@@ -0,0 +1,21 @@
+#
+# /etc/bash.bashrc
+#
+
+# If not running interactively, don't do anything
+[[ $- != *i* ]] && return
+
+[[ $DISPLAY ]] && shopt -s checkwinsize
+
+#PS1='[\u@\h \W]\$ '
+#PS1='\e[43m\u@\h\e[30m░▒▓\e(B\e[m$(pwd) $ '
+#PS2='\e[43m\e[30m ░▒▓\e(B\e[m>'
+
+PS1='\[\033[43m\]\[\033[30m\]🭬\[\033[0;43m\]\u@\h\[\033[33m\]\[\033[40m\]🭬\[\033[0m\]$(pwd) $ '
+PS2='\[\033[43m\]\[\033[30m\]🭬\[\033[1;37m\] \[\033[0;33m\]\[\033[40m\]🭬\[\033[0m\]'
+
+if [[ -r /usr/share/bash-completion/bash_completion ]]; then
+  . /usr/share/bash-completion/bash_completion
+fi
+
+alias vi='vim'
diff --git a/pacman.conf b/etc/pacman.conf
similarity index 100%
rename from pacman.conf
rename to etc/pacman.conf