Убрана лишняя печать
This commit is contained in:
parent
785476f0b2
commit
fc40d816f9
@ -27,14 +27,14 @@ aptf() {
|
|||||||
}
|
}
|
||||||
|
|
||||||
# Youtube
|
# Youtube
|
||||||
if command -v youtube-dl; then
|
if command -v youtube-dl > /dev/null 2>&1; then
|
||||||
alias ydlbest="youtube-dl --merge-output-format mkv -f 'bestvideo+bestaudio'"
|
alias ydlbest="youtube-dl --merge-output-format mkv -f 'bestvideo+bestaudio'"
|
||||||
alias ydlaudio="youtube-dl -f bestaudio"
|
alias ydlaudio="youtube-dl -f bestaudio"
|
||||||
alias ydl="youtube-dl --merge-output-format mkv"
|
alias ydl="youtube-dl --merge-output-format mkv"
|
||||||
fi
|
fi
|
||||||
|
|
||||||
# feh
|
# feh
|
||||||
command -v feg && alias feh="feh --cache-size 256 --version-sort --sort filename --image-bg black"
|
command -v feg > /dev/null 2>&1 && alias feh="feh --cache-size 256 --version-sort --sort filename --image-bg black"
|
||||||
|
|
||||||
# git
|
# git
|
||||||
alias gpa="git remote | xargs -L1 git push --all"
|
alias gpa="git remote | xargs -L1 git push --all"
|
||||||
@ -42,7 +42,7 @@ alias gu="git pull"
|
|||||||
alias gur="git pull --recurse-submodules"
|
alias gur="git pull --recurse-submodules"
|
||||||
alias gsui="git submodule update --recursive --init"
|
alias gsui="git submodule update --recursive --init"
|
||||||
alias gsur="git submodule update --recursive --init --remote"
|
alias gsur="git submodule update --recursive --init --remote"
|
||||||
command -v lazygit && alias lg=lazygit
|
command -v lazygit > /dev/null 2>&1 && alias lg=lazygit
|
||||||
|
|
||||||
# Фильтры (H,T,G,L определены в common-aliases)
|
# Фильтры (H,T,G,L определены в common-aliases)
|
||||||
alias -g NN='&>/dev/null'
|
alias -g NN='&>/dev/null'
|
||||||
|
Loading…
x
Reference in New Issue
Block a user