Compare commits

..

No commits in common. "3877f9aacc3a22f6af6919e80f7c68dc992848a1" and "b40c45ed19bab8faa37f3a1c3e0fb59b66e3a220" have entirely different histories.

View File

@ -27,14 +27,16 @@ aptf() {
}
# Youtube
if [ command -v youtube-dl ]; then
YDL="$HOME/bin/youtube-dl"
[ ! -x "$YDL" ] && YDL="$(which youtube-dl)"
if [ -x "$YDL" ]; then
alias ydlbest="youtube-dl --merge-output-format mkv -f 'bestvideo+bestaudio'"
alias ydlaudio="youtube-dl -f bestaudio"
alias ydl="youtube-dl --merge-output-format mkv"
fi
# feh
command -v feg && alias feh="feh --cache-size 256 --version-sort --sort filename --image-bg black"
alias feh="feh --cache-size 256 --version-sort --sort filename --image-bg black"
# git
alias gpa="git remote | xargs -L1 git push --all"
@ -42,7 +44,6 @@ alias gu="git pull"
alias gur="git pull --recurse-submodules"
alias gsui="git submodule update --recursive --init"
alias gsur="git submodule update --recursive --init --remote"
command -v lazygit && alias lg=lazygit
# Фильтры (H,T,G,L определены в common-aliases)
alias -g NN='&>/dev/null'