mirror of
https://github.com/ksyasuda/aniwrapper.git
synced 2024-10-28 04:44:11 -07:00
Compare commits
2 Commits
f1fbb643aa
...
7907e809b8
Author | SHA1 | Date | |
---|---|---|---|
|
7907e809b8 | ||
|
7a0eea5d69 |
30
ani-cli
30
ani-cli
@ -918,30 +918,18 @@ main() {
|
||||
Q)
|
||||
if ((IS_ROFI == 1)); then
|
||||
qualities="1. best|2. 1080p|3. 720p|4. 480p|5. 360p|6. worst"
|
||||
case "$quality" in
|
||||
best)
|
||||
cur_quality=0
|
||||
;;
|
||||
1080p)
|
||||
cur_quality=1
|
||||
;;
|
||||
720p)
|
||||
cur_quality=2
|
||||
;;
|
||||
480p)
|
||||
cur_quality=3
|
||||
;;
|
||||
360p)
|
||||
cur_quality=4
|
||||
;;
|
||||
worst)
|
||||
cur_quality=5
|
||||
;;
|
||||
esac
|
||||
while IFS='|' read -ra quals; do
|
||||
for q in "${quals[@]}"; do
|
||||
if [[ "$(awk '{ print $NF }' <<< "$q")" == "$quality" ]]; then
|
||||
cur_quality="$((${q:0:1} - 1))"
|
||||
break
|
||||
fi
|
||||
done
|
||||
done <<< "$qualities"
|
||||
choice=$(rofi -dmenu -dpi "$DPI" -config "$ROFI_CFG" \
|
||||
-theme-str 'listview {columns: 1;} window {width: 25%;}' \
|
||||
-i -l 6 -only-match -sep '|' -a "$cur_quality" -mesg "$(generate_span "Current quality: $quality")" \
|
||||
-p "Choose quality:" <<< "$qualities")
|
||||
-p "Choose quality:" -selected-row "$cur_quality" <<< "$qualities")
|
||||
quality=$(awk '{ print $2 }' <<< "$choice")
|
||||
else
|
||||
qualities="best|1080p|720p|480p|360p|worst"
|
||||
|
@ -426,11 +426,12 @@ main() {
|
||||
# choose theme
|
||||
# -----------------------------------------------------------------
|
||||
[ -z "$THEMES" ] && seppuku "No themes provided... exiting"
|
||||
theme_idx="$(get_theme_idx)"
|
||||
choice=$(rofi -dmenu -config "$CFG_FILE" -dpi "$DPI" \
|
||||
-theme-str 'listview {columns: 1;} window {width: 45%;}' \
|
||||
-only-match -l 4 -i -p "Choose theme: " -sep '|' \
|
||||
-theme-str 'listview { columns: 2; }' \
|
||||
-a "$(get_theme_idx)" <<< "$THEMES")
|
||||
-a "$theme_idx" -selected-row "$theme_idx" <<< "$THEMES")
|
||||
theme=$(awk '{ print $1 }' <<< "$choice")
|
||||
set_theme "$theme"
|
||||
main
|
||||
|
Loading…
Reference in New Issue
Block a user