diff options
-rwxr-xr-x | i3/.config/i3/what_alias.sh | 4 | ||||
-rwxr-xr-x | zsh/.zsh/aliases.zsh | 1 |
2 files changed, 3 insertions, 2 deletions
diff --git a/i3/.config/i3/what_alias.sh b/i3/.config/i3/what_alias.sh index e60a678..44c64a1 100755 --- a/i3/.config/i3/what_alias.sh +++ b/i3/.config/i3/what_alias.sh @@ -17,14 +17,14 @@ echo "║ gs -> git status gd -> git diff echo "║ gm -> git merge gr -> git rebase ║" echo "║ gp -> git push gu -> git pull ║" echo "║ gco -> git checkout ag -> search in code ║" -echo "║ mixer -> alsamixer matrix -> cmatrix -b ║" +echo "║ gap -> git add -p matrix -> cmatrix -b ║" echo "║ tempwatch -> sensors in while loop toiletlist -> toilet list font ║" echo "║ lol -> lolcat update -> yaourt -Syu ║" echo "║ :q/off -> poweroff ZZ -> quit ║" echo "║ disks -> disks info record -> record current screen ║" echo "║ nullify -> no fucking output log ff -> firefox-developer nullified ║" echo "║ lo -> libreoffice nullified le -> colorized less ║" -echo "║ mdm -> read md file like manpage ║" +echo "║ mdm -> read md file like manpage mixer -> alsamixer ║" echo "║ ║" echo "║ email <to> <subject> <text> ║" echo "║ ║" diff --git a/zsh/.zsh/aliases.zsh b/zsh/.zsh/aliases.zsh index fb76cbe..9c62839 100755 --- a/zsh/.zsh/aliases.zsh +++ b/zsh/.zsh/aliases.zsh @@ -33,6 +33,7 @@ alias vi="vim" alias emacs="vim" alias g="git" alias ga="git add" +alias gap="git add -p" alias gc="git commit -m" alias gs="git status" alias gd="git diff" |