dotfiles

Dash Eclipse's dotfiles
git clone git://ezup.dev/dotfiles.git
Log | Files | Refs | README | LICENSE

commit f27368bc255e09b84c951a9bbef385fa702fa762
parent b3d02393beec02e413b10095389d081b73043d7b
Author: Dash Eclipse <dashezup@disroot.org>
Date:   Sat, 23 Apr 2022 18:17:10 +0000

feat: add .bashrc

Diffstat:
A.bashrc | 19+++++++++++++++++++
1 file changed, 19 insertions(+), 0 deletions(-)

diff --git a/.bashrc b/.bashrc @@ -0,0 +1,19 @@ +# /etc/skel/.bashrc +# +# This file is sourced by all *interactive* bash shells on startup, +# including some apparently interactive shells such as scp and rcp +# that can't tolerate any output. So make sure this doesn't display +# anything or bad things will happen ! + + +# Test for an interactive shell. There is no need to set anything +# past this point for scp and rcp, and it's important to refrain from +# outputting anything in those cases. +if [[ $- != *i* ]] ; then + # Shell is non-interactive. Be done now! + return +fi + + +# Put your fun stuff here. +#PS1="\w \$\[\033[00m\] "