34 lines
662 B
Bash
34 lines
662 B
Bash
#
|
|
# ~/.bashrc
|
|
#
|
|
|
|
# If not running interactively, don't do anything
|
|
[[ $- != *i* ]] && return
|
|
|
|
alias ls='ls --color=auto'
|
|
#alias neofetch='neofetch | lolcat'
|
|
alias vim='nvim'
|
|
|
|
# colors
|
|
BLACK="\[$(tput setaf 0)\]"
|
|
RED="\[$(tput setaf 1)\]"
|
|
GREEN="\[$(tput setaf 2)\]"
|
|
ORANGE="\[$(tput setaf 3)\]"
|
|
BLUE="\[$(tput setaf 4)\]"
|
|
VIOLET="\[$(tput setaf 5)\]"
|
|
CYAN="\[$(tput setaf 6)\]"
|
|
GRAY="\[$(tput setaf 7)\]"
|
|
RESET="\[$(tput sgr0)\]"
|
|
|
|
# bg colors
|
|
BLUE_BG="\[$(tput setab 12)\]"
|
|
VIOLET_BG="\[$(tput setab 13)\]"
|
|
|
|
|
|
# PS1="${BLUE}\u${GREEN}@${RED}\h ${GREEN}\W${RESET} > "
|
|
PS1="${VIOLET_BG}${BLACK}\[$(tput bold)\][ \W ]${RESET} "
|
|
#
|
|
|
|
GTK_THEME=materia-gtk-theme
|
|
|