mirror of
https://github.com/ksyasuda/aniwrapper.git
synced 2024-10-28 04:44:11 -07:00
fix anime selection menu styling
getting list of active elements for rofi was broken due to bad not actually incrementing the loop each iteration
This commit is contained in:
parent
ef5e8b6ec3
commit
ce75838882
36
README.md
36
README.md
@ -33,16 +33,15 @@ however using the ani-cli script itself is also possible
|
|||||||
|
|
||||||
**Table of Contents**
|
**Table of Contents**
|
||||||
|
|
||||||
- [Aniwrapper](#aniwrapper)
|
|
||||||
- [Introduction](#introduction)
|
- [Introduction](#introduction)
|
||||||
- [Setup](#setup)
|
- [Setup](#setup)
|
||||||
- [Skip Intro Script](#skip-intro-script)
|
- [Skip Intro Script](#skip-intro-script)
|
||||||
- [Installing](#installing)
|
- [Installing](#installing)
|
||||||
- [Arch Linux](#arch-linux)
|
- [Arch Linux](#arch-linux)
|
||||||
- [Manual Install](#manual-install)
|
- [Manual Install](#manual-install)
|
||||||
- [Install the Dependencies](#install-the-dependencies)
|
- [Install the Dependencies](#install-the-dependencies)
|
||||||
- [Clone the repo](#clone-the-repo)
|
- [Clone the repo](#clone-the-repo)
|
||||||
- [Run the setup and install the script](#run-the-setup-and-install-the-script)
|
- [Run the setup and install the script](#run-the-setup-and-install-the-script)
|
||||||
- [Aniwrapper Menus](#aniwrapper-menus)
|
- [Aniwrapper Menus](#aniwrapper-menus)
|
||||||
- [Search Anime](#search-anime)
|
- [Search Anime](#search-anime)
|
||||||
- [Anime Selection](#anime-selection)
|
- [Anime Selection](#anime-selection)
|
||||||
@ -95,7 +94,7 @@ episode introduction by skipping to the next moment of silence in the video
|
|||||||
|
|
||||||
### Arch Linux
|
### Arch Linux
|
||||||
|
|
||||||
`aniwrapper-git` is available on the AUR for Arch users
|
`aniwrapper-git` is available on the [AUR](https://aur.archlinux.org/packages/aniwrapper-git/) for Arch users
|
||||||
|
|
||||||
```sh
|
```sh
|
||||||
paru -S aniwrapper-git
|
paru -S aniwrapper-git
|
||||||
@ -107,7 +106,7 @@ yay -S aniwrapper-git
|
|||||||
|
|
||||||
To install manually, make sure the dependencies are installed first
|
To install manually, make sure the dependencies are installed first
|
||||||
|
|
||||||
### Install the Dependencies
|
#### Install the Dependencies
|
||||||
|
|
||||||
```sh
|
```sh
|
||||||
# Arch
|
# Arch
|
||||||
@ -117,7 +116,7 @@ pacman -S --needed grep curl sed mpv ffmpeg rofi sqlite3
|
|||||||
apt install grep curl sed mpv ffmpeg rofi sqlite3
|
apt install grep curl sed mpv ffmpeg rofi sqlite3
|
||||||
```
|
```
|
||||||
|
|
||||||
### Clone the repo
|
#### Clone the repo
|
||||||
|
|
||||||
Use the following command to clone the Git repository locally and switch into the cloned directory
|
Use the following command to clone the Git repository locally and switch into the cloned directory
|
||||||
|
|
||||||
@ -125,7 +124,7 @@ Use the following command to clone the Git repository locally and switch into th
|
|||||||
git clone https://github.com/ksyasuda/aniwrapper && cd aniwrapper
|
git clone https://github.com/ksyasuda/aniwrapper && cd aniwrapper
|
||||||
```
|
```
|
||||||
|
|
||||||
### Run the setup and install the script
|
#### Run the setup and install the script
|
||||||
|
|
||||||
After switching into the `aniwrapper` directory, run the following commands to set up and install the script
|
After switching into the `aniwrapper` directory, run the following commands to set up and install the script
|
||||||
|
|
||||||
@ -142,6 +141,23 @@ There are several menus used to drive the program forward
|
|||||||
|
|
||||||
The first menu consists of a search box and a list of anime titles corresponding to past valid searches. Choose an option from the menu, or enter in a unique search query to search for a new anime. The result from this will be used to query against `gogoanime` and return similar named anime
|
The first menu consists of a search box and a list of anime titles corresponding to past valid searches. Choose an option from the menu, or enter in a unique search query to search for a new anime. The result from this will be used to query against `gogoanime` and return similar named anime
|
||||||
|
|
||||||
|
### Dealing with conflicting search queries / rofi grabbing from search list
|
||||||
|
|
||||||
|
I can write more about it later, but in this program, rofi is configured to search with case insensitivity and select the best match from the list if there are matches. This can make it difficult at times to write a search query that does not trigger a selection from the rofi menu
|
||||||
|
|
||||||
|
<div align="center">
|
||||||
|
|
||||||
|
![selection with query 'isekai'](https://imgur.com/c2U4kdn.png)
|
||||||
|
Once your history starts filling up, it becomes progressively more difficult to form unique search queries
|
||||||
|
|
||||||
|
![selection with dash](https://imgur.com/eS7DgDU.png)
|
||||||
|
The workaround for this is to prepend a dash ` -` to the search query<br/>
|
||||||
|
The above output was produced by searching: `isekai -`
|
||||||
|
|
||||||
|
</div>
|
||||||
|
|
||||||
|
As of the update on 2022-01-01, if selecting an anime from the search history list, the [anime selection](#anime-selection) menu will be skipped and the program will move on to [episode selection](#episode-selection)
|
||||||
|
|
||||||
## Anime Selection
|
## Anime Selection
|
||||||
|
|
||||||
The next menu is where you select the anime to watch from a narrowed down list. Elements that have a blue border and text color indicate which anime have been watched before
|
The next menu is where you select the anime to watch from a narrowed down list. Elements that have a blue border and text color indicate which anime have been watched before
|
||||||
@ -240,10 +256,10 @@ This would open/download episodes 1 2 3 4 5 6
|
|||||||
|
|
||||||
<div align="center">
|
<div align="center">
|
||||||
|
|
||||||
Aniwrapper Main Menu
|
|
||||||
![aniwrapper frontpage](https://imgur.com/ZAmoEUA.png)
|
![aniwrapper frontpage](https://imgur.com/ZAmoEUA.png)
|
||||||
Aniwrapper Streaming Menu
|
|
||||||
![aniwrapper streaming options](https://imgur.com/jVJQERk.png)
|
![aniwrapper streaming options](https://imgur.com/jVJQERk.png)
|
||||||
|
![aniwrapper anime selection](https://imgur.com/eS7DgDU.png)
|
||||||
|
|
||||||
More to come soon... maybe
|
More to come soon... maybe
|
||||||
|
|
||||||
</div>
|
</div>
|
||||||
|
11
ani-cli
11
ani-cli
@ -351,21 +351,24 @@ anime_selection() {
|
|||||||
check_db "$anime" "search"
|
check_db "$anime" "search"
|
||||||
if [[ $? -gt 0 ]]; then
|
if [[ $? -gt 0 ]]; then
|
||||||
log "SEARCHED BEFORE"
|
log "SEARCHED BEFORE"
|
||||||
if [[ "$searched" == "" ]]; then
|
if [ -z "$searched" ]; then
|
||||||
searched="$((cnt++))"
|
searched="$cnt"
|
||||||
else
|
else
|
||||||
searched="$searched, $((cnt++))"
|
searched="$searched, $cnt"
|
||||||
fi
|
fi
|
||||||
fi
|
fi
|
||||||
|
((++cnt))
|
||||||
done
|
done
|
||||||
|
|
||||||
log "SEARCHED: $searched"
|
log "SEARCHED: $searched"
|
||||||
|
|
||||||
# get the anime from indexed list
|
# get the anime from indexed list
|
||||||
|
msg="<span foreground='peachpuff' style='italic' size='small' weight='normal'>Query: $query</span>"
|
||||||
user_input=$(printf "${menu[@]}" |
|
user_input=$(printf "${menu[@]}" |
|
||||||
rofi -dmenu -config "$CFG_DIR/${ROFI_CFG}" \
|
rofi -dmenu -config "$CFG_DIR/${ROFI_CFG}" \
|
||||||
-a "$searched" \
|
-a "$searched" \
|
||||||
-l 12 -i -p "Enter number:")
|
-l 12 -i -p "Enter number:" \
|
||||||
|
-mesg "$msg")
|
||||||
[ -z "$user_input" ] && return 1
|
[ -z "$user_input" ] && return 1
|
||||||
|
|
||||||
choice=$(printf '%s\n' "$user_input" | awk '{print $1}')
|
choice=$(printf '%s\n' "$user_input" | awk '{print $1}')
|
||||||
|
Loading…
Reference in New Issue
Block a user