home cleanup

This commit is contained in:
2024-02-26 18:43:20 +01:00
parent 8d131c49e9
commit ef3f74f5f7
20 changed files with 2460 additions and 10 deletions

View File

@@ -0,0 +1,3 @@
#
# ~/.bash_logout
#

View File

@@ -0,0 +1,5 @@
#
# ~/.bash_profile
#
[[ -f ~/.bashrc ]] && . ~/.bashrc

View File

@@ -0,0 +1,10 @@
#
# ~/.bashrc
#
# If not running interactively, don't do anything
[[ $- != *i* ]] && return
alias ls='ls --color=auto'
alias grep='grep --color=auto'
PS1='[\u@\h \W]\$ '