Compare commits

..

2 Commits

Author SHA1 Message Date
3877f9aacc Чистка 2022-09-13 11:14:58 +03:00
120501c27a lazygit 2022-09-13 11:02:08 +03:00

View File

@ -27,16 +27,14 @@ aptf() {
}
# Youtube
YDL="$HOME/bin/youtube-dl"
[ ! -x "$YDL" ] && YDL="$(which youtube-dl)"
if [ -x "$YDL" ]; then
if [ command -v youtube-dl ]; 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
alias feh="feh --cache-size 256 --version-sort --sort filename --image-bg black"
command -v feg && alias feh="feh --cache-size 256 --version-sort --sort filename --image-bg black"
# git
alias gpa="git remote | xargs -L1 git push --all"
@ -44,6 +42,7 @@ 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'