mirror of
https://github.com/ksyasuda/aniwrapper.git
synced 2024-11-22 03:19:53 -08:00
Compare commits
No commits in common. "7ad12b0da8e53241ce4a2bfbcaca46f518f1ea66" and "e9c2048076c7db371854f4a09fa2209f813c9c2b" have entirely different histories.
7ad12b0da8
...
e9c2048076
12
README.md
12
README.md
@ -222,6 +222,18 @@ This option will present the name and episode number of 30 recently updated anim
|
|||||||
|
|
||||||
</details>
|
</details>
|
||||||
|
|
||||||
|
<details>
|
||||||
|
|
||||||
|
<summary>Example</summary>
|
||||||
|
|
||||||
|
<div align="center">
|
||||||
|
|
||||||
|
![example](https://imgur.com/d23iYy7.gif)
|
||||||
|
|
||||||
|
</div>
|
||||||
|
|
||||||
|
</details>
|
||||||
|
|
||||||
### Option 5: Play from File
|
### Option 5: Play from File
|
||||||
|
|
||||||
<details>
|
<details>
|
||||||
|
10
aniwrapper
10
aniwrapper
@ -276,13 +276,13 @@ check_flags() {
|
|||||||
if [ ! -d "$dl_dir" ]; then
|
if [ ! -d "$dl_dir" ]; then
|
||||||
mkdir -p "$dl_dir" || die "Error creating directory: $dl_dir"
|
mkdir -p "$dl_dir" || die "Error creating directory: $dl_dir"
|
||||||
fi
|
fi
|
||||||
args+=(-d"$dl_dir")
|
args+=(-d "$dl_dir")
|
||||||
fi
|
fi
|
||||||
if ((IS_DOWNLOAD)); then
|
if ((IS_DOWNLOAD)); then
|
||||||
args+=(-d "$DEFAULT_DOWNLOAD")
|
args+=(-d)
|
||||||
fi
|
fi
|
||||||
if ((IS_PLAY_FROM_FILE)); then
|
if ((IS_PLAY_FROM_FILE)); then
|
||||||
args+=(-f"$play_path")
|
args+=(-f "$play_path")
|
||||||
fi
|
fi
|
||||||
if ((IS_ALTERNATE_PLAYER)); then
|
if ((IS_ALTERNATE_PLAYER)); then
|
||||||
args+=(-p "$PLAYER_FN")
|
args+=(-p "$PLAYER_FN")
|
||||||
@ -294,9 +294,9 @@ check_flags() {
|
|||||||
args+=(-S)
|
args+=(-S)
|
||||||
fi
|
fi
|
||||||
if ((IS_CUSTOM_THEME)); then
|
if ((IS_CUSTOM_THEME)); then
|
||||||
args+=(-T"$CFG_FILE")
|
args+=(-T "$CFG_FILE")
|
||||||
elif ((!IS_CUSTOM_THEME)); then
|
elif ((!IS_CUSTOM_THEME)); then
|
||||||
args+=(-t"$theme")
|
args+=(-t "$theme")
|
||||||
fi
|
fi
|
||||||
if ((IS_VERBOSE)); then
|
if ((IS_VERBOSE)); then
|
||||||
args+=(-v)
|
args+=(-v)
|
||||||
|
Loading…
Reference in New Issue
Block a user