summaryrefslogtreecommitdiff
path: root/configs/profile/root-image/etc/skel/.bashrc
diff options
context:
space:
mode:
authorbill-auger <mr.j.spam.me@gmail.com>2017-10-19 01:02:05 -0400
committerbill-auger <mr.j.spam.me@gmail.com>2018-01-01 00:53:09 -0500
commit456dc3314cc45d149de26f367f4872a3d9e0fa98 (patch)
treee2d9f25751efa74e042a248293c2899b6ff8b9a9 /configs/profile/root-image/etc/skel/.bashrc
parent9699ecdf11572a3cdcb34ae022320a1fd18ad129 (diff)
add filesystem overlay for graphical systems
Diffstat (limited to 'configs/profile/root-image/etc/skel/.bashrc')
-rw-r--r--configs/profile/root-image/etc/skel/.bashrc15
1 files changed, 15 insertions, 0 deletions
diff --git a/configs/profile/root-image/etc/skel/.bashrc b/configs/profile/root-image/etc/skel/.bashrc
new file mode 100644
index 0000000..89392d7
--- /dev/null
+++ b/configs/profile/root-image/etc/skel/.bashrc
@@ -0,0 +1,15 @@
+#
+# ~/.bashrc
+#
+
+# If not running interactively, don't do anything
+[[ $- != *i* ]] && return
+
+setxkbmap us
+
+alias ls='ls --color=auto'
+
+if [[ "$XDG_VTNR" == "7" ]]
+then PS1="\[\033[01;32m\]\u@\h\[\033[00m\]:\[\033[01;34m\]\w/\[\033[00m\]\n$ "
+else PS1='[\u@\h \W]\$ '
+fi