diff options
Diffstat (limited to '.config/pipe-viewer')
-rw-r--r-- | .config/pipe-viewer/gtk-pipe-viewer.conf | 2 | ||||
-rw-r--r-- | .config/pipe-viewer/pipe-viewer.conf | 9 |
2 files changed, 7 insertions, 4 deletions
diff --git a/.config/pipe-viewer/gtk-pipe-viewer.conf b/.config/pipe-viewer/gtk-pipe-viewer.conf index 8838f4a..e6eb8c9 100644 --- a/.config/pipe-viewer/gtk-pipe-viewer.conf +++ b/.config/pipe-viewer/gtk-pipe-viewer.conf @@ -68,7 +68,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", srt => "--sub-file=*SUB*", }, 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, |