From 7ea21826565b907457749a9db8cb4de34b89306a Mon Sep 17 00:00:00 2001 From: sinanmohd Date: Wed, 16 Aug 2023 19:20:07 +0530 Subject: dunicode: clean up, code style and icon var --- dunicode | 92 +++++++++++++++++++++++++++++----------------------------------- 1 file changed, 42 insertions(+), 50 deletions(-) diff --git a/dunicode b/dunicode index 6524203..ad1915b 100755 --- a/dunicode +++ b/dunicode @@ -2,6 +2,7 @@ set -e data_dir="${XDG_DATA_HOME:-$HOME/.local/share}/unicode" +icon="󰞅 " menu="wmenu" note() @@ -9,7 +10,7 @@ note() : "${1:?}" command -v notify-send > /dev/null && - notify-send "󰞅 dunicode" "$1" + notify-send "$icon dunicode" "$1" } die() @@ -35,9 +36,6 @@ dep_check() get_glyph() { - - str= - for glyph in "$data_dir"/* do [ -s "$glyph" ] && @@ -49,53 +47,47 @@ get_glyph() # shellcheck disable=SC2059 [ -n "${str#*\n}" ] && - str="$(printf "$str" | "$menu" -p "󰞅 ")" + str="$(printf "$str" | "$menu" -p "$icon")" - str="$("$menu" -l 25 -p "󰞅 " < "${data_dir}/${str}")" + str="$("$menu" -l 25 -p "$icon " < "${data_dir}/${str}")" echo "${str%%[[:space:]]*}" - - unset str -} - -main() -{ - - [ -z "$WAYLAND_DISPLAY" ] && - menu="dmenu" - - case "$1" in - -h) - printf "usage: %s %s" "${0##*/}" "[-ct]" - ;; - -c) - glyph="$(get_glyph)" - - if [ -z "$WAYLAND_DISPLAY" ] - then - dep_check "xclip" - printf "%s" "$glyph" | xclip -selection clipboard - else - dep_check "wl-copy" - printf "%s" "$glyph" | wl-copy - fi && - note "$glyph coppied to clipboard" - ;; - -t|"") - glyph="$(get_glyph)" - - if [ -z "$WAYLAND_DISPLAY" ] - then - dep_check "xdotool" - xdotool type --delay 20 "$glyph" - else - dep_check "wtype" - wtype -d 20 "$glyph" - fi - ;; - *) - die "invalid usage: ${0##*/} $*" - ;; - esac } -main "$@" +######## +# MAIN # +######## + +[ -z "$WAYLAND_DISPLAY" ] && menu="dmenu" + +case "$1" in +-h) + printf "usage: %s %s" "${0##*/}" "[-ct]" + ;; +-c) + glyph="$(get_glyph)" + + if [ -z "$WAYLAND_DISPLAY" ] + then + dep_check "xclip" + printf "%s" "$glyph" | xclip -selection clipboard + else + dep_check "wl-copy" + printf "%s" "$glyph" | wl-copy + fi && + note "$glyph coppied to clipboard" + ;; +-t|"") + glyph="$(get_glyph)" + + if [ -z "$WAYLAND_DISPLAY" ] + then + dep_check "xdotool" + xdotool type --delay 20 "$glyph" + else + dep_check "wtype" + wtype -d 20 "$glyph" + fi + ;; +*) + die "invalid usage: ${0##*/} $*" +esac -- cgit v1.2.3