mirror of
https://github.com/ksyasuda/aniwrapper.git
synced 2024-10-28 04:44:11 -07:00
add dir history to play from file menu
This commit is contained in:
parent
90dec870e0
commit
41c40bbd38
11
aniwrapper
11
aniwrapper
@ -352,9 +352,14 @@ main() {
|
|||||||
lg "Play from file selected"
|
lg "Play from file selected"
|
||||||
IS_PLAY_FROM_FILE=1
|
IS_PLAY_FROM_FILE=1
|
||||||
span=$(printf '%s\n%s\n' "$(generate_span "Provide a valid path to a directory or leave blank to go with the default: $HOME/Videos/sauce/")" "$(generate_span "The program will begin searching for media files from the supplied directory")")
|
span=$(printf '%s\n%s\n' "$(generate_span "Provide a valid path to a directory or leave blank to go with the default: $HOME/Videos/sauce/")" "$(generate_span "The program will begin searching for media files from the supplied directory")")
|
||||||
play_dir=$(rofi -dpi "$DPI" -dmenu -config "$CFG_FILE" \
|
play_dir=$(
|
||||||
-theme-str 'listview {columns: 1;} window {width: 45%;}' \
|
rofi -dpi "$DPI" -dmenu -config "$CFG_FILE" \
|
||||||
-l 1 -mesg "$span" -p "Enter path to starting directory:")
|
-l 12 -mesg "$span" -p "Enter path to starting directory:" \
|
||||||
|
-async-pre-read 24 < <(sqlite3 -noheader -list "$CFG_DIR/history.sqlite3" <<< "SELECT directory FROM file_history WHERE filename = 'DIRECTORY' ORDER BY WATCH_DATE DESC;")
|
||||||
|
)
|
||||||
|
# trim trailing whitespace
|
||||||
|
play_dir="${play_dir%% }"
|
||||||
|
lg "Play dir: $play_dir"
|
||||||
if [ -z "$play_dir" ]; then
|
if [ -z "$play_dir" ]; then
|
||||||
mkdir -p "$DEFAULT_DOWNLOAD" || seppuku "error creating default download directory"
|
mkdir -p "$DEFAULT_DOWNLOAD" || seppuku "error creating default download directory"
|
||||||
run -f"$DEFAULT_DOWNLOAD"
|
run -f"$DEFAULT_DOWNLOAD"
|
||||||
|
Loading…
Reference in New Issue
Block a user