Squashed commit of the following:

- quote fix
This commit is contained in:
2025-10-17 19:44:13 -05:00
parent fe74ef66ee
commit a910750e91
2 changed files with 2 additions and 2 deletions

View File

@@ -8,7 +8,7 @@ choices=$(jq '.[]|.categories|.[]|.name' "$KAO_FILE" | sed 's/"//g')
choice=$(echo "$choices" | sed /^$/d | rofi -dmenu "$prompt_message")
emojlist=$(jq --arg sel "$choice" '..| select(.name==$sel)? | .emoticons | .[]' "$KAO_FILE")
emojlist=$(jq -r --arg sel "$choice" '..| select(.name==$sel)? | .emoticons | .[]' "$KAO_FILE")
emoj=$(echo "$emojlist" | sed /^$/d | rofi -dmenu "$prompt_message")