commit e27d9886059d457fcdda5aa89745cc4b2de9345d
parent f480d55c1ba93474548e5e4629e98de87c7fbedc
Author: regexghost <dev@regexghost.com>
Date: Sun, 21 Jun 2026 18:44:55 +0100
new aliases, removed gitpass and removed testing lines from mymv.sh
Diffstat:
3 files changed, 3 insertions(+), 6 deletions(-)
diff --git a/dotfiles/.kshrc b/dotfiles/.kshrc
@@ -89,6 +89,7 @@ alias da='download-vids && download-pods'
# Bug todo
alias bgl='bug ls'
+alias bglt='bug ls | grep -v "Anytime"' # bug ls but only timed/important things
alias bglc='bug ls | wc -l'
alias bgr='bug rm'
alias bgv='bug view'
@@ -98,20 +99,17 @@ alias bga='bug add'
# Git Aliases
alias gd='git diff'
-alias gdc='git diff --cached'
+alias gdc='git diff --cached' # Show diff for things `git add`'ed
alias gdw='git diff --word-diff-regex=.'
alias gs='git status .'
alias gsa='git status'
alias gpl='git pull'
alias gl='git log'
alias glc='echo $(git rev-list --count HEAD) commits'
-alias giturl='git config --get remote.origin.url'
alias gp='git push'
alias ga='git add'
alias gc='git commit'
-alias gitpass='keepassxc-cli show ~/Downloads/passwords.kdbx "GitHub" | grep Notes | cut -d " " -f 2 | xclip -selection clipboard'
-
gpa () {
git push -u origin
git push -u codeberg
diff --git a/dotfiles/Package_Manager-Substitution-apt-.kshrc b/dotfiles/Package_Manager-Substitution-apt-.kshrc
@@ -3,6 +3,7 @@ alias install='sudo apt install'
alias remove='sudo apt remove'
alias update='sudo apt update'
alias upgrade='sudo apt upgrade'
+alias fullup='sudo apt update && sudo apt upgrade'
alias search='apt search'
alias aptlog='cat /var/log/dpkg.log | grep'
diff --git a/terminal-scripts/mymv.sh b/terminal-scripts/mymv.sh
@@ -4,9 +4,7 @@
if [ "$#" -eq 2 ]; then
if [ -f "$2" ]; then
- echo here
read -p "Overwrite existing file? (y/N) " yesOrNo
- echo here
if [ "$yesOrNo" = "y" ] || [ "$yesOrNo" = "Y" ]; then
mv "$1" "$2"
fi