diff options
author | Adam T. Carpenter <atc@53hor.net> | 2020-06-13 11:52:33 -0400 |
---|---|---|
committer | Adam T. Carpenter <atc@53hor.net> | 2020-06-13 11:52:33 -0400 |
commit | 0f0409e3ffef48bd20b3aa31d03cb1ac6e35f385 (patch) | |
tree | c244fd397b0cebb0dcbac339960c1442dae1a842 /yt.sh | |
parent | 1a26090ba7df4b076f011b8f9ac5d4d81dc14a02 (diff) | |
download | scripts-0f0409e3ffef48bd20b3aa31d03cb1ac6e35f385.tar.xz scripts-0f0409e3ffef48bd20b3aa31d03cb1ac6e35f385.zip |
cleanup, updated locking/autolocking
Diffstat (limited to 'yt.sh')
-rwxr-xr-x | yt.sh | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -109,7 +109,7 @@ download_audio() { play_video() { url="$1" notify-send "Playing video..." "$(get_info $url)" & - mpv --no-terminal --geometry=25%-10-40 --title=yt.sh $url & + mpv --no-terminal --geometry=25%-10-40 --title="Streaming from YouTube" $url & } @@ -117,7 +117,7 @@ play_video() { play_audio() { url="$1" notify-send "Playing audio..." "$(get_info $url)" & - $TERMINAL -t yt.sh -e mpv --no-video $url & + $TERMINAL -t "Streaming from YouTube" -e mpv --no-video $url & } |