From f62eca657a79ef81089f3c34cdf837d7463581db Mon Sep 17 00:00:00 2001 From: Mattias Andrée Date: Sat, 26 Jun 2021 14:59:09 +0200 Subject: Add ipa, man, and unicode scripts MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Mattias Andrée --- dmenu/Makefile | 19 +++++ dmenu/ipa | 208 +++++++++++++++++++++++++++++++++++++++++++++++ dmenu/man | 39 +++++++++ dmenu/unicode | 5 ++ dmenu/unicode.d/Makefile | 19 +++++ dmenu/unicode.d/conv | 8 ++ 6 files changed, 298 insertions(+) create mode 100644 dmenu/Makefile create mode 100755 dmenu/ipa create mode 100755 dmenu/man create mode 100755 dmenu/unicode create mode 100644 dmenu/unicode.d/Makefile create mode 100755 dmenu/unicode.d/conv diff --git a/dmenu/Makefile b/dmenu/Makefile new file mode 100644 index 0000000..151ba9c --- /dev/null +++ b/dmenu/Makefile @@ -0,0 +1,19 @@ +.POSIX: +include ../common.mk + +install: + $(CHECK_INSTALLED) dash + $(CHECK_INSTALLED) vis + make -C unicode.d + mkdir -p -- ~/.local/bin + ln -sf -- ~/.dotfiles/dmenu/man ~/.local/bin/ + ln -sf -- ~/.dotfiles/dmenu/ipa ~/.local/bin/ + ln -sf -- ~/.dotfiles/dmenu/unicode ~/.local/bin/ + +uninstall: + -unlink -- ~/.local/bin/man + -unlink -- ~/.local/bin/ipa + -unlink -- ~/.local/bin/unicode + -make -C unicode.d reallyclean + +.PHONY: install uninstall diff --git a/dmenu/ipa b/dmenu/ipa new file mode 100755 index 0000000..102e242 --- /dev/null +++ b/dmenu/ipa @@ -0,0 +1,208 @@ +#!/bin/dash + +# https://www.unicode.org/charts/PDF/U1D80.pdf +# https://www.unicode.org/charts/PDF/U0250.pdf + +sed 's/^\([^ ]*\) \([^ ]*\) /\2 \1 /g' < $@ || cp $@.backup $@ + cp -- $@ $@.backup + +list: NamesList.txt + wget -O NamesList.txt $(URL) + ./conv < NamesList.txt > $@ + +clean: + -rm -f -- NamesList.txt NamesList.txt.backup + +reallyclean: clean + -rm -f list + +.PHONY: all diff --git a/dmenu/unicode.d/conv b/dmenu/unicode.d/conv new file mode 100755 index 0000000..ca8fb35 --- /dev/null +++ b/dmenu/unicode.d/conv @@ -0,0 +1,8 @@ +#!/usr/bin/python3 +try: + while True: + cols = input().split('\t') + if len(cols) == 2 and '<' not in cols[1] and cols[0] and all(c in '0123456789abcdefABCDEF' for c in cols[0]): + print(chr(int(cols[0], 16)) + ' ' + cols[0] + ' ' + cols[1]) +except EOFError: + pass -- cgit v1.2.3-70-g09d2