Updated the worthwhile functions stuff KEK

Signed-off-by: Andrei Jiroh Eugenio Halili <andreijiroh@madebythepins.tk>
This commit is contained in:
Andrei Jiroh Eugenio Halili 2021-09-09 14:46:52 +08:00
parent 564318b1ca
commit fcf64bd60e
Signed by: ajhalili2006
GPG Key ID: A30EBE40AD856D88
1 changed files with 5 additions and 3 deletions

View File

@ -13,11 +13,11 @@ edit-funcs-bashrc() {
$(echo $EDITOR || command -v nano>>/dev/null && echo nano || echo vi) ~/.dotfiles/bashrc/worthwhile-functions
}
list-debs-size () {
list-debs-size() {
dpkg-query -Wf '${Installed-Size}\t${Package}\n' | sort -rn | less
}
edit-script-file () {
edit-script-file() {
# if you use other editor, please set $EDITOR.
$(echo $EDITOR || command -v code>>/dev/null && echo code || command -v nano>>/dev/null && echo nano || echo vi) "$(command -v $1)"
}
@ -32,7 +32,7 @@ refresh-aliases() {
# https://commentedcode.org/blog/2020/09/21/changing-default-branch-of-git-init/
git() {
# check command for some automation KEK
# check command for some automation KEK, especially i want to do DCO by default
if [[ "$1" == "init" && "$@" != *"--help"* ]]; then
[[ $DEBUG != "" ]] && echo "args: $@" && sleep 3
if command git "$@"; then
@ -42,6 +42,8 @@ git() {
elif [[ "$1" == "commit" && "$@" != *"--help"* && ( "$@" != *"--signoff"* && "$@" != *"-s"* && $@ != *"--amend" ) ]]; then
[ $DEBUG != "" ] && echo "args: $@ --signoff" && sleep 3
command git "$@" --signoff
elif [[ "$1" == "pull" && "$@" != *"--help"* && ( "$@" != *"--signoff"* && "$@" != *"-s"* ) ]]; then
command git "$@" --signoff
else
command git "$@"
fi