commit 7b6610ea92147e41188dc446841a2a450d53048d parent 8248c0d72af4b4f7e69039e430cc2484c481662e Author: Alex Balgavy <a.balgavy@gmail.com> Date: Sat, 28 Apr 2018 01:40:40 +0200 MPV launches with highest niceness value so as not to take up valuable clock cycles. Diffstat:
M | .bin/radio | | | 4 | ++-- |
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/.bin/radio b/.bin/radio @@ -27,9 +27,9 @@ do echo "Now playing $RADIO" echo "Loading..." if $VISUALISER; then - mpv ${radios[$i]} --script="/Users/alex/.config/mpv/visualizer.lua" --really-quiet -vo caca + nice -n 20 mpv ${radios[$i]} --script="/Users/alex/.config/mpv/visualizer.lua" --really-quiet -vo caca else - mpv ${radios[$i]} + nice -n 20 mpv ${radios[$i]} fi break fi