mirror of
https://github.com/Mastermindzh/dotfiles.git
synced 2024-11-22 23:04:10 +01:00
18 lines
233 B
Bash
18 lines
233 B
Bash
|
#
|
||
|
# ~/.bashrc
|
||
|
#
|
||
|
|
||
|
source ~/.alias
|
||
|
# If not running interactively, don't do anything
|
||
|
[[ $- != *i* ]] && return
|
||
|
|
||
|
|
||
|
alias ls='ls --color=auto'
|
||
|
|
||
|
eval $(thefuck --alias)
|
||
|
|
||
|
#... :P fancy stuffs
|
||
|
screenfetch -t -A "UBUNTU"
|
||
|
PS1='[\u@\h \W]\$ '
|
||
|
|