]> git.phdru.name Git - dotfiles.git/blobdiff - bin/mplay
Play video file(s) asking audio volume
[dotfiles.git] / bin / mplay
index 47862336c1160fca832e8992cec23b7c290c5a63..e4ca11004c5b1d39c3198b168f33c776fa48261c 100755 (executable)
--- a/bin/mplay
+++ b/bin/mplay
@@ -1,15 +1,19 @@
 #! /bin/sh
 
-options="-ao pulse -quiet"
+options="--ao pulse --quiet"
+
+if [ -n "$AUDIO_VOLUME" ]; then
+   options="$options --af=loudnorm --volume=$AUDIO_VOLUME"
+fi
 
 if [ "$DISPLAY" ]; then
    (xscreensaver-command -exit
    xset -dpms s off) &
 fi
 
-cgmem_nice 500 "`basename $0`"er $options "$@"
+cgmem_nice 1000 mpv $options "$@"
 
-if [ "$DISPLAY" ]; then
+if [ -n "$DISPLAY" ]; then
    cd "$HOME"
    xset +dpms s on
    xscreensaver &