diff options
author | Soispha <soispha@vhack.eu> | 2024-01-03 11:20:48 +0100 |
---|---|---|
committer | Soispha <soispha@vhack.eu> | 2024-01-03 11:20:48 +0100 |
commit | 57db8dc6d435908ff8e5afb8ede3723fd5018d51 (patch) | |
tree | f5cb753eded8db489ede270884a7b065d9452989 | |
parent | fix(hm/pkgs/scr/yts): Always stop the active task, when exiting (diff) | |
download | nixos-config-57db8dc6d435908ff8e5afb8ede3723fd5018d51.zip |
fix(hm/pkgs/scr/ytc): Set output separator not to '"' but ';'
Diffstat (limited to '')
-rwxr-xr-x | hm/soispha/pkgs/scripts/wrappers/ytc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/hm/soispha/pkgs/scripts/wrappers/ytc b/hm/soispha/pkgs/scripts/wrappers/ytc index 7e806449..c607ea81 100755 --- a/hm/soispha/pkgs/scripts/wrappers/ytc +++ b/hm/soispha/pkgs/scripts/wrappers/ytc @@ -6,11 +6,11 @@ CONCURRENT=4 OUTPUT_PATH="/tmp/ytcc"; col() { - echo "$1" | csvtool -t ';' col "$2" - + echo "$1" | csvtool -t ';' -u ';' col "$2" - } play() { - msg2 "Playing: $1" + msg2 "Playing: '$1'" mpv "$1" --speed=2.7 --volume=75 output="$?"; |