Убрана лишняя печать
This commit is contained in:
		@@ -27,14 +27,14 @@ aptf() {
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
# 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 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"
 | 
			
		||||
command -v feg > /dev/null 2>&1 && 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 +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
 | 
			
		||||
command -v lazygit > /dev/null 2>&1 && alias lg=lazygit
 | 
			
		||||
 | 
			
		||||
# Фильтры (H,T,G,L определены в common-aliases)
 | 
			
		||||
alias -g NN='&>/dev/null'
 | 
			
		||||
 
 | 
			
		||||
		Reference in New Issue
	
	Block a user