From bbdc56f0498f6ec140a022fb63cf29946ca6fe06 Mon Sep 17 00:00:00 2001 From: Evan Pratten Date: Thu, 16 Nov 2023 15:23:23 -0500 Subject: [PATCH] macros --- configs/shells/bash/.bashrc | 5 ----- configs/shells/bash/macros.sh | 17 +++++++++++++++++ configs/shells/zsh/.zshrc | 4 ++++ 3 files changed, 21 insertions(+), 5 deletions(-) diff --git a/configs/shells/bash/.bashrc b/configs/shells/bash/.bashrc index 44a9343..abe2c23 100644 --- a/configs/shells/bash/.bashrc +++ b/configs/shells/bash/.bashrc @@ -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 - - diff --git a/configs/shells/bash/macros.sh b/configs/shells/bash/macros.sh index 5457c72..2a575d3 100644 --- a/configs/shells/bash/macros.sh +++ b/configs/shells/bash/macros.sh @@ -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 /" + 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 \ No newline at end of file diff --git a/configs/shells/zsh/.zshrc b/configs/shells/zsh/.zshrc index 0df886b..bd683b8 100644 --- a/configs/shells/zsh/.zshrc +++ b/configs/shells/zsh/.zshrc @@ -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"