Update 2025-04-28

This commit is contained in:
2025-04-28 15:53:07 +03:00
parent 90d846ea20
commit 94fabd2f50
4 changed files with 80 additions and 10 deletions

View File

@@ -31,13 +31,6 @@ alias \
dv="doasedit" \
e="$EDITOR" \
fetch="fastfetch" \
g="git" \
gP="git push" \
ga="git add" \
gc="git commit" \
gd="git diff" \
gp="git pull" \
gs="git status" \
j="joshutoub" \
lf="lfub" \
lg="lazygit" \
@@ -54,6 +47,17 @@ alias \
yarn="yarn --use-yarnrc $XDG_CONFIG_HOME/yarn/config" \
yy="yazi"
alias \
gP="git push" \
ga="git add" \
gap="git add --patch" \
gc="git commit" \
gd="git diff --output-indicator-new=' ' --output-indicator-old=' '" \
gds="git diff --staged" \
gl="git log --all --graph --pretty=format:'%C(magenta)%h %C(white) %an %ar%C(auto) %D%n%s%n'" \
gp="git pull" \
gs="git status --short"
# doas not required for some system commands
for command in mount umount rsv sv pacman updatedb su shutdown poweroff reboot zzz systemctl wg wg-quick; do
alias "$command=doas $command"