From 945f8b32044b25ae59fd88b6d2001d0a8cbb1448 Mon Sep 17 00:00:00 2001 From: Dilan Gilluly Date: Wed, 18 Feb 2026 23:15:35 -0500 Subject: [PATCH] (add): sbv and go/wails path --- .bashrc | 6 ++++++ .config/dg-bash/aliases.sh | 3 ++- 2 files changed, 8 insertions(+), 1 deletion(-) diff --git a/.bashrc b/.bashrc index a6c6b2a..ee63ffd 100644 --- a/.bashrc +++ b/.bashrc @@ -10,6 +10,12 @@ if [ -f ~/.config/dg-bash/functions.sh ]; then source ~/.config/dg-bash/functions.sh fi +if [ -x "$(command -v go)" ]; then + if [ -d "$(go env GOPATH)/bin" ]; then + export PATH=$PATH:$(go env GOPATH)/bin + fi +fi + if [ -x "$(command -v fastfetch)" ]; then if [ -f ~/.config/fastfetch/minimal.jsonc ]; then fastfetch -c ~/.config/fastfetch/minimal.jsonc diff --git a/.config/dg-bash/aliases.sh b/.config/dg-bash/aliases.sh index 786c47a..2987f1f 100644 --- a/.config/dg-bash/aliases.sh +++ b/.config/dg-bash/aliases.sh @@ -3,6 +3,7 @@ alias c="clear" alias pbcopy="xsel -i -b" alias pbpaste="xsel -o -b" -alias hs="hugo server --disableFastRender && rm -r public" +alias hs="hugo server --disableFastRender -D && rm -r public" alias us="./uploadsite.sh" alias ccdt="date -Is | pbcopy" +alias sbv="echo \"Verses: $1\" > $HOME/bible-verses.txt"