#! /bin/zsh omx-play-sound () { omx-play-whatever $OMX_SND_MOD $@ } omx-play-sound-forever () { local snd=$1 while (true); do # TODO: what if user changes sound volume? omx-play-sound $snd done } alias plsf=omx-play-sound-forever alias plsl=omx-play-sound-forever