dotfiles

regexghost dotfiles and scripts
git clone https://git.regexghost.com/dotfiles.git
Log | Files | Refs | README

commit 7269e63d17abd1244ebd91d38c53239e1cb9bfd5
parent 421b7896ed925529a370bd9edd32fce19fba9745
Author: regexghost <dev@regexghost.com>
Date:   Mon, 24 Aug 2026 20:04:19 +0100

mpv bound to e in newsraft, removed 30fps limit for videos as there doesn't seem to be 720p 30fps anymore

Diffstat:
Mdotfiles/.config/newsraft/config | 1+
Mterminal-scripts/download-vids.sh | 2+-
2 files changed, 2 insertions(+), 1 deletion(-)

diff --git a/dotfiles/.config/newsraft/config b/dotfiles/.config/newsraft/config @@ -2,6 +2,7 @@ bind g exec-quiet '~/.config/newsraft/show-image.sh "%l"' bind f exec-quiet '~/.config/newsraft/queue-vid.sh "%l"' bind t exec '~/.config/newsraft/article.sh "%l"' bind w exec 'w3m "%l"' +bind e exec-quiet 'mpv "%l"' global-section-hide true item-limit 20 menu-item-sorting unread-desc diff --git a/terminal-scripts/download-vids.sh b/terminal-scripts/download-vids.sh @@ -5,7 +5,7 @@ targetDir="${LOC}/toDownload" [ -d "$targetDir/done" ] || mkdir "$targetDir/done" -quality_options_videos="bestvideo[height<=720][fps<=30][vcodec*=avc]+bestaudio[ext=m4a]" +quality_options_videos="bestvideo[height<=720][fps<=60][vcodec*=avc]+bestaudio[ext=m4a]" quality_options_shorts="bestvideo[width<=720][vcodec*=avc]+bestaudio[ext=m4a]" filename_options="%(channel)s - %(title)s.%(ext)s" sub_options="--embed-subs --sub-langs en.*"