1
0
Fork 0
mirror of https://github.com/ohmyzsh/ohmyzsh.git synced 2024-11-23 14:20:08 +00:00

common-aliases: Make media file viewer configurable using the $XMVIEWER variable

This commit is contained in:
Alexander Schlarb 2018-08-09 21:34:08 +02:00
parent 5889f4cfc9
commit ca467bd9d9

View file

@ -120,8 +120,10 @@ if is-at-least 4.2.0; then
for ft in $_image_fts; do alias -s $ft='$XIVIEWER'; done for ft in $_image_fts; do alias -s $ft='$XIVIEWER'; done
fi fi
_media_fts=(ape avi flv m4a mkv mov mp3 mpeg mpg ogg ogm rm wav webm) if [[ -n "$XMVIEWER" ]]; then
for ft in $_media_fts; do alias -s $ft=mplayer; done _media_fts=(ape avi flv m4a mkv mov mp3 mpeg mpg ogg ogm rm wav webm)
for ft in $_media_fts; do alias -s $ft=$XMVIEWER; done
fi
#read documents #read documents
alias -s pdf=acroread alias -s pdf=acroread