diff options
author | Joe <bousset.rudy@gmail.com> | 2023-01-31 21:13:10 +0100 |
---|---|---|
committer | Joe <bousset.rudy@gmail.com> | 2023-01-31 21:13:10 +0100 |
commit | ae83bf5ca77c4cb3b6f219456e92d4c5e0f8fc9f (patch) | |
tree | 7341031ed0f84167350e95f48397761ef6544ad9 /.config/pipe-viewer/pipe-viewer.conf | |
parent | fbsd merge (diff) | |
parent | up (diff) | |
download | dotfiles-bsd-ae83bf5ca77c4cb3b6f219456e92d4c5e0f8fc9f.tar.gz dotfiles-bsd-ae83bf5ca77c4cb3b6f219456e92d4c5e0f8fc9f.tar.bz2 dotfiles-bsd-ae83bf5ca77c4cb3b6f219456e92d4c5e0f8fc9f.tar.xz dotfiles-bsd-ae83bf5ca77c4cb3b6f219456e92d4c5e0f8fc9f.tar.zst dotfiles-bsd-ae83bf5ca77c4cb3b6f219456e92d4c5e0f8fc9f.zip |
Merge branch 'master' of gitjoe.xyz:dotfiles-bsd
Diffstat (limited to '')
-rw-r--r-- | .config/pipe-viewer/pipe-viewer.conf | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/.config/pipe-viewer/pipe-viewer.conf b/.config/pipe-viewer/pipe-viewer.conf index 3cb2eb9..8f6b115 100644 --- a/.config/pipe-viewer/pipe-viewer.conf +++ b/.config/pipe-viewer/pipe-viewer.conf @@ -1,6 +1,8 @@ #!/usr/bin/perl -# CLI Pipe Viewer 0.2.2 - configuration file +# CLI Pipe Viewer 0.4.4 - configuration file + +use utf8; our $CONFIG = { api_host => "auto", @@ -53,6 +55,7 @@ our $CONFIG = { force_fallback => 0, fullscreen => 0, get_captions => 1, + get_subscriptions_in_parallel => 0, get_term_width => 1, hfr => 1, highlight_color => "bold", @@ -97,7 +100,7 @@ our $CONFIG = { mpv => { arg => "--really-quiet --force-media-title=*TITLE* *VIDEO*", audio => "--audio-file=*AUDIO*", - cmd => "/usr/local/bin/mpv", + cmd => "mpv", fs => "--fullscreen", novideo => "--no-video", srt => "--sub-file=*SUB*", @@ -121,7 +124,7 @@ our $CONFIG = { wget_cmd => "wget", youtube_video_url => "https://www.youtube.com/watch?v=%s", ytdl => 1, - ytdl_cmd => "/usr/local/bin/yt-dlp", + ytdl_cmd => "/usr/bin/yt-dlp", ytdlp_comments => 0, ytdlp_max_comments => 10, ytdlp_max_replies => 3, |