Now works with Fedora

This commit is contained in:
2024-06-09 04:16:43 -05:00
parent e37dd1be84
commit 314e5c9b8b
662 changed files with 128036 additions and 1568 deletions

View File

@ -0,0 +1,22 @@
# This is an example configuration file for lobster. This configuration includes all of the defaults, which you can change to you likings. The script will behave the exact same if you remove all of the values present here.
lobster_editor=${VISUAL:-${EDITOR:-vim}}
player=vlc
download_dir="$PWD/Downloads"
provider="UpCloud"
history=1
subs_language="english"
histfile="$HOME/.local/share/lobster/lobster_history.txt"
use_external_menu=0
image_preview=0
debug=0
quiet_output=0
preview_window_size=50%
ueberzug_x=$(($(tput cols) - 70))
ueberzug_y=$(($(tput lines) / 10))
ueberzug_max_width=100
ueberzug_max_height=100
download_video() {
ffmpeg -loglevel error -stats -i "$1" -c copy "$3/$2".mp4
}