bin: update shortcuts
This commit is contained in:
parent
8a8f31219e
commit
99470780ca
|
@ -9,7 +9,7 @@ snapinstall() {
|
|||
}
|
||||
|
||||
alias aptupdate='sudo apt-get update'
|
||||
alias aptremove='sudo apt-get remove'
|
||||
alias aptremove='sudo apt-get remove --autoremove'
|
||||
alias aptpurge='sudo apt-get purge --autoremove'
|
||||
alias aptclean='sudo apt-get clean && sudo apt-get autoremove'
|
||||
upgrade() {
|
||||
|
|
|
@ -4,10 +4,9 @@ command -v notify-send >/dev/null &&
|
|||
|
||||
if which jrnl >/dev/null; then
|
||||
alias j='jrnl'
|
||||
jn() { jrnl -to today "$@" | less +G; }
|
||||
jn() { jrnl -to today "$@" | less --exit-follow-on-close +F; }
|
||||
alias jnc='jn -contains'
|
||||
alias jne='jrnl --edit'
|
||||
# TODO jump to end
|
||||
fi
|
||||
|
||||
test "$DISPLAY" || return 0
|
||||
|
|
|
@ -0,0 +1,2 @@
|
|||
#!/bin/sh
|
||||
curl --location $1.patch | git am
|
|
@ -0,0 +1,2 @@
|
|||
#!/bin/sh
|
||||
find -type d -exec touch {}/.nomedia \;
|
Loading…
Reference in New Issue