diff options
| author | subh <subh@example.com> | 2026-01-31 10:35:36 +0530 |
|---|---|---|
| committer | subh <subh@example.com> | 2026-01-31 10:35:36 +0530 |
| commit | bd7ffca7774ac96abb496d86810b20dc20736178 (patch) | |
| tree | c19ac74d55485d88f396e7bf5ad46d4542880160 /scripts | |
| parent | 667f7d3561272b460163c26d7893dfc0e01ac1cb (diff) | |
Added a script with a hotkey to lookup word meanings and a url decoder in python for the CLI
Diffstat (limited to 'scripts')
| -rwxr-xr-x | scripts/decoder | 17 | ||||
| -rwxr-xr-x | scripts/define.sh | 22 |
2 files changed, 39 insertions, 0 deletions
diff --git a/scripts/decoder b/scripts/decoder new file mode 100755 index 0000000..1b19fce --- /dev/null +++ b/scripts/decoder @@ -0,0 +1,17 @@ +#!/usr/bin/env python3 + +import urllib.parse +import sys + +if len(sys.argv) < 2: + print(f"[*] Usage: python3 {sys.argv[0]} <url-encoded-data>") + sys.exit() + +enc = sys.argv[1] + +def decode(e): + dec = urllib.parse.unquote(e) + print(dec) + +decode(enc) + diff --git a/scripts/define.sh b/scripts/define.sh new file mode 100755 index 0000000..041f0a1 --- /dev/null +++ b/scripts/define.sh @@ -0,0 +1,22 @@ +#!/bin/bash + +if [ -z "$1" ]; then + echo "[!] Provide a word" + exit 1 +fi + +RESP=$(curl -s -q https://api.dictionaryapi.dev/api/v2/entries/en/$1 | jq -r ' + [.[0].meanings[] + | select(.partOfSpeech=="noun") + | .definitions[].definition][0:2] + | to_entries + | map("\(.key + 1). \(.value)") + | join("\n") +' 2>/dev/null) + +if [ -z "$RESP" ]; then + notify-send -t 10000 -u normal -i accessories-dictionary "Meaning Not Found!" +else + notify-send -t 10000 -u normal -i accessories-dictionary "$1" "$RESP" +fi + |
