1
This commit is contained in:
Evan Pratten 2023-11-16 15:23:23 -05:00
parent 03987e23cb
commit bbdc56f049
3 changed files with 21 additions and 5 deletions

View File

@ -14,8 +14,3 @@ export PATH="$HOME/.local/bin:$PATH"
# A basic prompt to display user@host dir sign
export PS1="(${PS1_CTX:-bash}) \[\e[0;32m\]\u@\h \[\e[0;36m\]\w \[\e[0;36m\]\$ \[\e[0m\]"
# If found, load studio python
# if [ -d "/c/Programs/software/win/core/python/python_3.7.7" ]; then export PATH="/c/Programs/software/win/core/python/python_3.7.7:$PATH"; fi

View File

@ -22,6 +22,8 @@ alias flush-dns-cache="sudo systemd-resolve --flush-caches"
alias which-ls="ls -la $(which ls)"
alias rdns="dig +short -x"
alias ufw-status="sudo ufw status numbered"
alias genuuid="python -c 'import uuid; print(uuid.uuid4())'"
alias clipboard="xclip -selection clipboard"
# WHOIS macros
alias whois-afrinic="whois -h whois.afrinic.net"
@ -220,3 +222,18 @@ ewconfig-run() {
$@
cd $cwd
}
# Define a function to emulate gh
gh-emulated() {
if [ $# != 3 ]; then
echo "You don't have gh installed. Emulating its functionality."
echo "Usage: gh repo clone <user>/<repo>"
else
git clone https://github.com/$3
fi
}
# Only if `gh` is not installed
if ! command -v gh &> /dev/null; then
alias gh=gh-emulated
fi

View File

@ -21,6 +21,10 @@ export PATH="$HOME/bin:$PATH"
export PATH="$EWCONFIG_ROOT/scripts:$PATH"
export PATH="$HOME/.local/bin:$PATH"
# Make sure libs can be found
export LD_LIBRARY_PATH="/usr/local/lib:$LD_LIBRARY_PATH"
export LD_LIBRARY_PATH="/usr/local/lib64:$LD_LIBRARY_PATH"
# I want to be able to load my custom python modules
export PYTHONPATH="$EWCONFIG_ROOT/python_modules:$PYTHONPATH"