Dot_Files/.profile
2022-03-07 14:50:15 -06:00

390 lines
9.7 KiB
Bash

#!/bin/bash
# shellcheck source=./.zstyle
source ~/.zstyle
. "${HOME}/.cargo/env"
### Pathing ###
export PATH="${HOME}/.bin:${PATH}"
export PATH="${PATH}:/opt/homebrew/Cellar/llvm/13.0.0_2/bin"
# Mac pathing beneath
if [[ "${OSTYPE}" = "darwin"* ]]; then
export PATH="/opt/homebrew/opt/coreutils/libexec/gnubin:${PATH}"
export MANPATH="/opt/homebrew/opt/coreutils/libexec/gnuman:${MANPATH}"
# Python with pyenv
eval "$(pyenv init --path)"
eval "$(pyenv init -)"
# LLDB
export PATH="/opt/homebrew/opt/llvm/bin:${PATH}"
fi
### OPTS ###
setopt extendedglob
setopt nullglob
### Environment Variables ###
export LANG=en_US.UTF-8
if [[ -f "/usr/libexec/java_home" ]]; then
export JAVA_HOME="$(/usr/libexec/java_home)"
fi
export AWS_CLI_AUTO_PROMPT=on
export ZSH_HIGHLIGHT_MAXLENGTH=10000
export ZSH_AUTOSUGGEST_BUFFER_MAX_SIZE=2
export LANG=en_US.UTF-8
export NOTES_DIR="${HOME}/.notes"
export DOCKER_BUILDKIT=1
# Fzf Variables
export FZF_DEFAULT_OPTS="--height=80% --layout=reverse --info=inline --border --margin=1 --padding=1"
if which nvim >/dev/null 2>&1; then
export EDITOR=nvim
export VISUAL=nvim
export MANPAGER="nvim +Man!"
else
export EDITOR=vim
export VISUAL=vim
fi
### Terminal Specific Configuration ###
# If using the kitty terminal we want to set our TERM var to be xterm as kitty will send
# kitty-xterm which causes a fucking headache and a half due to ncurses not containing
# that by default
if [[ "${TERM}" = *"xterm-kitty"* ]]; then
alias ssh="TERM=xterm-256color ssh"
alias icat="kitty +kitten icat"
__kitty_complete
fi
### Zsh Vi-Mode Configuration ###
# Makes the cursor change based on the mode
export VI_MODE_SET_CURSOR=true
# Set the editor to neovim for visual mode
export ZVM_VI_EDITOR="${EDITOR}"
# This ensures that fzf completion works
zvm_after_init_commands+=('[[ -r ~/.fzf.zsh ]] && source ~/.fzf.zsh')
### Aliases ###
## Exa ls Replacement Configuration ##
if which exa >/dev/null 2>&1; then
alias ls="exa --icons --group"
alias l="exa --icons --group -alh"
alias tree="ls --tree"
fi
## Git Aliases ##
if which git >/dev/null 2>&1; then
alias gc="git commit"
alias gcm="git commit -m"
alias ga="git add"
alias gp="git push"
alias gb="git branch"
alias gco="git checkout"
alias gpl="git pull"
alias gs="git status"
alias gst="git stash"
alias gstc="git stash clear"
alias gsw="git switch"
alias gd="git diff"
alias gr="git remote"
alias gl="git log"
alias gw="git worktree"
alias git-remote="git config --get remote.origin.url"
alias gfo="git fetch origin 'refs/heads/*:refs/heads/*'"
fi
## Mac Specific Aliases ##
if [[ "${OSTYPE}" = "darwin"* ]]; then
alias c="pbcopy"
alias p="pbpaste"
alias grep="ggrep"
alias find="gfind"
alias kill="gkill"
fi
## Neovim Aliases ##
if which nvim >/dev/null 2>&1; then
alias n="nvim"
fi
## Bat (Alternative to Cat) Aliases ##
if which bat >/dev/null 2>&1; then
alias cat="bat"
fi
## Misc Aliases ##
alias ghidra="ghidraRun"
alias v="vim"
alias :q="exit"
alias Get-Public-IPV4="dig @resolver4.opendns.com myip.opendns.com +short -4"
alias Get-Public-IPV6="dig @resolver1.ipv6-sandbox.opendns.com AAAA myip.opendns.com +short -6"
alias :profile="${EDITOR} ${HOME}/.profile"
### Completions ###
# Homebrew completions
if type brew &>/dev/null; then
FPATH="$(brew --prefix)/share/zsh/site-functions:${FPATH}"
autoload -Uz compinit
compinit
fi
# Completions from .zsh directory
if [[ -d "${HOME}/.zsh/completions" ]]; then
FPATH="${HOME}/.zsh/completions:${FPATH}"
autoload -Uz compinit
compinit
fi
### Functions ###
del() {
local BASE_TRASH_DIR
BASE_TRASH_DIR="${HOME}/.Trash/"
local trash_del_dir
trash_del_dir="${BASE_TRASH_DIR}/del-$(date +%Y-%m-%dT%H:%M:%S)"
mkdir -p "${trash_del_dir}"
for i in "${@}"; do
mv "${i}" "${trash_del_dir}"
done
}
DAP-Python-Gen() {
local module
module="${1}"
name="${2:=Local Module}"
mkdir -p .vscode
cat <<__EOF__ >.vscode/launch.json
{
"configurations": [
{
"name": "Launch ${name}",
"type": "python",
"request": "launch",
"module": "${module}"
}
]
}
__EOF__
}
Note() {
local invoked_dir
invoked_dir="$(pwd)"
mkdir -p "${NOTES_DIR}"
if [ -z "${1}" ]; then
printf "%s\n" "No note provided!" 1>&2
return 1
fi
local note_selection
note_selection="${NOTES_DIR}/${2}.norg"
local note_bare
note_bare="${2}"
local selection
selection="${1}"
local option_selected
option_selected=1
while ((option_selected != 0)); do
case "${selection}" in
--open | -o)
if [[ -z "${note_bare}" ]]; then
echo_rgb "No note selection provided!" 255 0 0 25 0 0
return 1
fi
cd "${NOTES_DIR}"
nvim "${note_selection}"
cd "${invoked_dir}"
option_selected=0
;;
--delete | -d)
if [[ -z "${*:2}" ]]; then
echo_rgb "No note selection provided!" 255 0 0 25 0 0 1>&2
return 1
fi
local exit_code
exit_code=0
for note in "${@:2}"; do
note_selection="${NOTES_DIR}/${note}.norg"
if [[ ! -r "${note_selection}" ]]; then
echo_rgb "Could not delete \"${note}\", does it exist?" 255 0 0 25 0 0 1>&2
exit_code=1
fi
rm -f "${note_selection}"
done
option_selected=0
return "${exit_code}"
;;
--list | -l)
for note in "${NOTES_DIR}/"*.norg; do
echo_rgb "${note}" 64 143 255 11 22 36
done
option_selected=0
;;
*)
selection="--open"
note_selection="${NOTES_DIR}/${1}.norg"
note_bare="${1}"
;;
esac
done
}
TCPDump-Capture() {
tcpdump -qns 0 -X -r "${1}"
}
Known-Hosts() {
local prev_ifs
prev_ifs="${IFS}"
while IFS=$'\n' read -r line; do
echo "${line}" | cut -d " " -f1
done <~/.ssh/known_hosts
IFS="${prev_ifs}"
}
Work-Hours() {
local WORK_HOURS_PATH
WORK_HOURS_PATH=~/Vircio/Work-Hours
mkdir -p "${WORK_HOURS_PATH}"
${EDITOR} "${WORK_HOURS_PATH}/$(date +%Y-%m-%d)"
}
date_iso_8601() {
date +%Y-%m-%dT%H:%M:%S
}
echo_rgb() {
# Echo a colored string to the terminal based on rgb values
#
# NOTE: This function will only truly work with terminals that support TRUE COLOR, see:
# https://gist.github.com/XVilka/8346728
#
# Positional Arguments:
#
# message <type: string> <position: 1> <required: true>
# - The message to be printed to stdout
# red <type: int> <position: 2> <required: true>
# - The red value from 0 to 255
# green <type: int> <position: 3> <required: true>
# - The green value from 0 to 255
# blue <type: int> <position: 4> <required: true>
# - The blue value from 0 to 255
# bg_red <type: int> <position: 5> <required: false>
# - The background red value from 0 to 255
# bg_green <type: int> <position: 6> <required: false>
# - The background green value from 0 to 255
# bg_blue <type: int> <position: 7> <required: false>
# - The background blue value from 0 to 255
#
# Usage:
# echo_rgb "Yep" 10 80 30
# echo_rgb "DESTROY MY EYES" 255 0 255 0 255 0
#
# POSIX Compliant:
# N/A
#
local red
local green
local blue
local input
local bg_red
local bg_green
local bg_blue
input="${1}"
red="${2}"
green="${3}"
blue="${4}"
bg_red="${5}"
bg_green="${6}"
bg_blue="${7}"
for num in "${@:2}"; do
[[ ! "${num}" =~ [0-9] ]] &&
printf "%s\n" "Given RGB value was not a number, received ${num}" 1>&2 &&
return 1
[[ "${num}" -gt 255 ]] &&
printf "%s\n" "Given RGB value must be less than 255, received ${num}" 1>&2 &&
return 1
[[ "${num}" -lt 0 ]] &&
printf "%s\n" "Given RGB value must be more than 0, received ${num}" 1>&2 &&
return 1
done
if [ -t 1 ]; then
if [ -n "${5}" ]; then
[[ -z "${6}" ]] && echo "A value must be passed for bg_green" && return 1
[[ -z "${7}" ]] && echo "A value must be passed for bg_blue" && return 1
printf "\033[38;2;%s;%s;%s;48;2;%s;%s;%sm%s\033[m\n" \
"${red}" "${green}" "${blue}" "${bg_red}" "${bg_green}" "${bg_blue}" "${input}"
else
printf "\033[0;38;2;%s;%s;%sm%s\033[m\n" "${red}" "${green}" "${blue}" "${input}"
fi
else
printf "%s\n" "${input}"
fi
}
chr() {
python3 -c "print(chr(int('${1}')))"
}
ord() {
python3 -c "print(ord('${1}'))"
}
tmp() {
(
export MY_SHLVL=tmp:$MY_SHLVL
export od=$PWD
tmp=$(mktemp -d)
export tmp
trap 'rm -rf ${tmp}' 0
if ! cd "${tmp}"; then
printf "%s \"%s\"\n" "Unable to cd into" "${tmp}"
exit 1
fi
if [ -z "$1" ]; then
$SHELL -l
else
[ "$1" = "-l" ] && {
shift
set "${@}" ";" "$SHELL -l"
}
eval "${@}"
fi
)
}
### FZF FUNCTIONS ###
killer() {
(
date
ps -ef
) |
fzf --bind='ctrl-r:reload(date; ps -ef)' \
--header=$'Press CTRL-R to reload\n\n' --header-lines=2 \
--preview='echo {}' --preview-window=down,3,wrap \
--layout=reverse --height=80% | awk '{print $2}' | xargs kill -9
}