2023-11-30 03:15:08 +00:00
|
|
|
###############################################################################
|
|
|
|
# Tyler Perkins
|
|
|
|
# .bashrc
|
|
|
|
# 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
|
|
|
|
#
|
|
|
|
# >>> conda initialize >>>
|
|
|
|
# !! Contents within this block are managed by 'conda init' !!
|
|
|
|
__conda_setup="$('/home/tyler/code/miniconda/bin/conda' 'shell.bash' 'hook' 2> /dev/null)"
|
|
|
|
if [ $? -eq 0 ]; then
|
|
|
|
eval "$__conda_setup"
|
|
|
|
else
|
|
|
|
if [ -f "/home/tyler/code/miniconda/etc/profile.d/conda.sh" ]; then
|
|
|
|
. "/home/tyler/code/miniconda/etc/profile.d/conda.sh"
|
|
|
|
else
|
|
|
|
export PATH="/home/tyler/code/miniconda/bin:$PATH"
|
|
|
|
fi
|
|
|
|
fi
|
|
|
|
unset __conda_setup
|
|
|
|
# <<< conda initialize <<<
|
|
|
|
#
|
|
|
|
|
|
|
|
# Set a huge history file
|
|
|
|
HISTSIZE=20000
|
|
|
|
HISTFILESIZE=30000
|
|
|
|
|
|
|
|
|
|
|
|
#vi mode
|
|
|
|
#set -o vi
|
|
|
|
|
|
|
|
# Put your fun stuff here.
|
|
|
|
|
|
|
|
#add .cargo/bin to path
|
|
|
|
export PATH="/home/tyler/.cargo/bin:$PATH"
|
|
|
|
export PATH="/home/tyler/.local/bin:$PATH"
|
|
|
|
export _JAVA_AWT_WM_NONREPARENTING=1
|
|
|
|
#use vim as editor
|
|
|
|
export EDITOR="/usr/bin/vim"
|
|
|
|
|
|
|
|
#pyenv
|
|
|
|
export PYENV_ROOT="$HOME/.pyenv"
|
|
|
|
export PATH="$PYENV_ROOT/versions/bin/3.8.12/bin:$PATH"
|
|
|
|
|
|
|
|
#proton work directory set as enviroment var
|
|
|
|
export STEAM_COMPAT_DATA_PATH=~/.proton/
|
|
|
|
export STEAM_COMPAT_CLIENT_INSTALL_PATH=~/.steam/steam/steamapps/common/Proton\ 6.3/
|
|
|
|
|
|
|
|
# Pico programming
|
|
|
|
export PICO_SDK_PATH=/home/tyler/code/pico/pico-sdk
|
|
|
|
|
|
|
|
# General environment variables
|
|
|
|
|
|
|
|
#eval "$(register-python-argcomplete pmbootstrap)"
|
|
|
|
|
|
|
|
#alias set
|
|
|
|
alias ls="ls --color"
|
|
|
|
alias l="ls -al"
|
|
|
|
alias lt="ls --human-readable --size -S --classify"
|
|
|
|
alias ..="cd .."
|
|
|
|
alias sha="shasum -a 256"
|
|
|
|
alias untar="tar zxvf"
|
|
|
|
alias sync="sudo emerge --sync && sudo layman -S"
|
|
|
|
alias upgrade-all="sudo emerge --ask --verbose --update --deep --changed-use @world"
|
|
|
|
alias myip="curl ipinfo.io/ip"
|
|
|
|
alias port="netstat -tulanp"
|
|
|
|
alias ports="netstat -tulanp | less"
|
|
|
|
alias audio="pulsemixer"
|
|
|
|
alias email="aerc"
|
|
|
|
alias weather="curl wttr.in"
|
|
|
|
alias httpserver="python -m http.server"
|
|
|
|
alias google="tuxi"
|
|
|
|
alias clipboard="xclip -selection clipboard"
|
|
|
|
alias new-wallpaper="feh --bg-fill --randomize ~/.desktop/wallpaper/"
|
|
|
|
alias gitea="tea"
|
|
|
|
alias set-motd="vim /home/tyler/.desktop/alarm/motd.txt"
|
|
|
|
alias ":q!"="exit"
|
|
|
|
|
|
|
|
alias diff="diff --color=auto"
|
|
|
|
alias grep="grep -i --color=auto"
|
|
|
|
alias mv="mv -v"
|
|
|
|
alias sudo="doas"
|
|
|
|
alias arduino=" arduino"
|
|
|
|
alias logisim-evolution="_JAVA_AWT_WM_NONREPARENTING=1 logisim-evolution"
|
|
|
|
alias vifm="vifmrun"
|
|
|
|
alias f="vifm"
|
|
|
|
alias new-motd="vim /home/tyler/.desktop/alarm/motd.txt"
|
|
|
|
|
|
|
|
alias disable-alarm=". /home/tyler/.desktop/alarm/disable-alarm.sh"
|
|
|
|
|
|
|
|
#vim opens vim wiki by default, else the file
|
|
|
|
#function vimw(){
|
|
|
|
# if [ $# -eq 0 ]; then
|
|
|
|
# vim ~/vimwiki/splash.wiki
|
|
|
|
# else
|
|
|
|
# vim $@
|
|
|
|
# fi
|
|
|
|
#}
|
|
|
|
#alias vim="vimw"
|
|
|
|
|
|
|
|
export PS1="\033[1m\e[0;97m[\e[0;32m\u\e[0;97m@\e[0;31m\h \e[0;97m(\D{}) \w]\n$ \033[0m"
|
|
|
|
export KUBECONFIG=~/.kube/config
|
|
|
|
|
|
|
|
#display colors
|
|
|
|
_PROMPT_GREEN_='\033[1;32m'
|
|
|
|
_PROMPT_HEAD_="$_PROMPT_GREEN_"
|
|
|
|
_PROMPT_VAR_='\033[0;31m'
|
|
|
|
|
|
|
|
#display stuff at beggining of the shell
|
|
|
|
echo -e "${_PROMPT_HEAD_}#########################"
|
|
|
|
echo -e "${_PROMPT_HEAD_}#Welcome ${_PROMPT_VAR_}$(whoami)"
|
|
|
|
echo -e "${_PROMPT_HEAD_}#EIp : ${_PROMPT_VAR_}$(ifconfig eth0 | grep -Eo 'inet (addr:)?([0-9]*\.){3}[0-9]*' | grep -Eo '([0-9]*\.){3}[0-9]*' | grep -v '127.0.0.1')"
|
|
|
|
#echo -e "${_PROMPT_HEAD_}#WIp : ${_PROMPT_VAR_}$(ifconfig wlo1 | grep -Eo 'inet (addr:)?([0-9]*\.){3}[0-9]*' | grep -Eo '([0-9]*\.){3}[0-9]*' | grep -v '127.0.0.1')"
|
|
|
|
#echo -e "${_PROMPT_HEAD_}#PIp : ${_PROMPT_VAR_}$(curl -s ipinfo.io/ip)"
|
|
|
|
echo -e "${_PROMPT_HEAD_}#Time: ${_PROMPT_VAR_}$(date +"%T")"
|
|
|
|
echo -e "${_PROMPT_HEAD_}#${_PROMPT_VAR_}\x1b[3m $(shuf -n 1 ~/.desktop/messages.txt) "
|
|
|
|
|
|
|
|
shopt -s histappend
|
|
|
|
PROMPT_COMMAND="history -a; history -c; history -r;$PROMPT_COMMAND"
|
|
|
|
|
2023-12-01 18:25:24 +00:00
|
|
|
PROG=tea source "~/.config/tea/autocomplete.sh"
|
|
|
|
PROG=pass source "~/.local/bin/pass-completion.sh"
|
2023-11-30 03:15:08 +00:00
|
|
|
|