From 8b78dd820569c5c642d3d8ca73747ac01bb0fa83 Mon Sep 17 00:00:00 2001 From: Colin Powell Date: Thu, 12 Mar 2026 13:59:37 -0400 Subject: [PATCH] [bash] Update aliases for passwords --- bash/.aliases | 3 ++- bash/.bashrc | 4 ++++ 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/bash/.aliases b/bash/.aliases index b1dd124..d067c78 100644 --- a/bash/.aliases +++ b/bash/.aliases @@ -17,6 +17,8 @@ alias bookpull="rsync -aziuvhP rhea.local:/tank/books/ ~/.calibre/" alias bookpush="rsync -aziuvhP ~/.calibre/ rhea.local:/tank/books/" alias gpghup='gpgconf --kill gpg-agent && gpgconf --launch gpg-agent' alias dotup='(cd ~/.dotfiles && git pull public master && make)' +alias djlogs="tail -f -n 50 /tmp/django.log" +alias clogs="tail -f -n 50 /tmp/celery.log" # Vrobbler shortcuts @@ -39,6 +41,5 @@ alias hrdjsh="(cd $HUNGRYROOT_DIR && just djshell)" alias hrqa="(cd $HUNGRYROOT_DIR && just ecs-exec qa)" alias hrstg="(cd $HUNGRYROOT_DIR && just ecs-exec staging)" alias hrprod="(cd $HUNGRYROOT_DIR && just ecs-exec prod)" -alias hrlogs="tail -f -n 50 /tmp/hungryroot-django.log" alias hrdc="(cd $HUNGRYROOT_DIR && just docker-run)" alias hrotp="pass otp work/hungryroot/okta" diff --git a/bash/.bashrc b/bash/.bashrc index 8bdb738..84133be 100644 --- a/bash/.bashrc +++ b/bash/.bashrc @@ -51,3 +51,7 @@ set-pg-env() { export PATH="/home/powellc/.shorebird/bin:$PATH" [[ -f ~/.bash-preexec.sh ]] && source ~/.bash-preexec.sh + +# Added by LM Studio CLI (lms) +export PATH="$PATH:/home/powellc/.lmstudio/bin" +# End of LM Studio CLI section