summaryrefslogtreecommitdiff
path: root/scripts/getUnicode
diff options
context:
space:
mode:
authorJacob McDonnell <jacob@jacobmcdonnell.com>2026-02-21 18:45:07 -0500
committerJacob McDonnell <jacob@jacobmcdonnell.com>2026-02-21 18:45:07 -0500
commita504b63dfaa23ac6ba420942f71d859630c03e0e (patch)
tree9dff1f05c408fabfa5da7dcbfc5b901f14706af9 /scripts/getUnicode
parentc82d20316320d8584f0a9fa1218f0e73d1fc4530 (diff)
refactor!: Unused Programs Removed
Multiple unused programs have be removed. These programs were unmaintained, no longer functioning, and/or had no purpose anymore. BREAKING CHANGE: Multiple scripts removed
Diffstat (limited to 'scripts/getUnicode')
-rwxr-xr-xscripts/getUnicode12
1 files changed, 0 insertions, 12 deletions
diff --git a/scripts/getUnicode b/scripts/getUnicode
deleted file mode 100755
index 13d7971..0000000
--- a/scripts/getUnicode
+++ /dev/null
@@ -1,12 +0,0 @@
-#!/bin/sh
-
-char=$(cut -d ';' -f1 ~/.local/share/unicode | dmenu -i -l 30 | sed "s/ .*//")
-
-[ -z "$char" ] && exit
-
-if [ -n "$1" ]; then
- xdotool type "$char"
-else
- echo "$char" | tr -d '\n' | xclip -selection clipboard
- notify-send "'$char' copied to clipboard." &
-fi