Fix open on Linux, close #24
This commit is contained in:
parent
1515ff4b25
commit
fd669f22a4
10
alias.zsh
10
alias.zsh
|
@ -57,8 +57,11 @@ alias scp='nocorrect scp'
|
||||||
alias type='type -a'
|
alias type='type -a'
|
||||||
|
|
||||||
# Mac OS X
|
# Mac OS X
|
||||||
if [[ "$OSTYPE" != darwin* ]]; then
|
if [[ "$OSTYPE" == darwin* ]]; then
|
||||||
alias open='xdg-open'
|
alias o='open'
|
||||||
|
alias get='curl --continue-at - --location --progress-bar --remote-name'
|
||||||
|
else
|
||||||
|
alias o='xdg-open'
|
||||||
alias get='wget --continue --progress=bar'
|
alias get='wget --continue --progress=bar'
|
||||||
|
|
||||||
if (( $+commands[xclip] )); then
|
if (( $+commands[xclip] )); then
|
||||||
|
@ -70,11 +73,8 @@ if [[ "$OSTYPE" != darwin* ]]; then
|
||||||
alias pbcopy='xsel --clipboard --input'
|
alias pbcopy='xsel --clipboard --input'
|
||||||
alias pbpaste='xsel --clipboard --output'
|
alias pbpaste='xsel --clipboard --output'
|
||||||
fi
|
fi
|
||||||
else
|
|
||||||
alias get='curl --continue-at - --location --progress-bar --remote-name'
|
|
||||||
fi
|
fi
|
||||||
|
|
||||||
alias o='open'
|
|
||||||
alias pbc='pbcopy'
|
alias pbc='pbcopy'
|
||||||
alias pbp='pbpaste'
|
alias pbp='pbpaste'
|
||||||
|
|
||||||
|
|
|
@ -76,12 +76,12 @@ if zstyle -t ':omz:environment:grep' color; then
|
||||||
fi
|
fi
|
||||||
|
|
||||||
# Browser (Default)
|
# Browser (Default)
|
||||||
|
if [[ "$OSTYPE" == darwin* ]]; then
|
||||||
|
export BROWSER='open'
|
||||||
|
else
|
||||||
if (( $+commands[xdg-open] )); then
|
if (( $+commands[xdg-open] )); then
|
||||||
export BROWSER='xdg-open'
|
export BROWSER='xdg-open'
|
||||||
fi
|
fi
|
||||||
|
|
||||||
if (( $+commands[open] )); then
|
|
||||||
export BROWSER='open'
|
|
||||||
fi
|
fi
|
||||||
|
|
||||||
# Less
|
# Less
|
||||||
|
|
Loading…
Reference in a new issue