diff --git a/ani-cli b/ani-cli index 51d905b..63eeacb 100755 --- a/ani-cli +++ b/ani-cli @@ -423,10 +423,9 @@ get_search_query() { ORDER BY search_date DESC;" msg="Choose from list of searched anime below, or enter a unique name of an anime to search for" - span="$(generate_span "$msg")" if [ "$is_rofi" -eq 1 ]; then query=$(rofi -dpi "$DPI" -dmenu -l 15 -p "Search Anime:" \ - -mesg "$span" \ + -mesg "$(generate_span "$msg")" \ -config "$ROFI_CFG" < <(run_stmt "$stmt")) # Remove the id from the query query="${query//[1-9]*\. /}" diff --git a/aniwrapper b/aniwrapper index edd4999..db3c2de 100755 --- a/aniwrapper +++ b/aniwrapper @@ -242,8 +242,11 @@ main() { # download # --------------------------------------------------------------------------- lg "Download anime" - dl_dir=$(rofi -dpi "$DPI" -dmenu -config "$CFG_FILE" \ - -l 1 -p "Enter download dir:") + dl_dir=$( + rofi -dpi "$DPI" -dmenu -config "$CFG_FILE" \ + -mesg "$(generate_span "Enter the path to the download directory, or leave blank to go with the default: $HOME/Videos/sauce/")" \ + -l 1 -p "Enter download dir:" + ) # if dl_dir is none set to current directory [ "$dl_dir" == "" ] && dl_dir="$DEFAULT_DOWNLOAD" run -d "$dl_dir"