From 3989f003bdade7eb803152a344c80aa8aeadc335 Mon Sep 17 00:00:00 2001 From: Armaan Bhojwani <3fb650a9-b47e-4604-a282-1dd91953b2ee@anonaddy.me> Date: Thu, 15 Oct 2020 14:19:10 -0400 Subject: [PATCH] removed MOTD, fixed german --- Makefile | 5 ++--- charfiles/german | 18 +++++++++--------- src/charsel => charsel | 4 +--- src/motd | 3 --- 4 files changed, 12 insertions(+), 18 deletions(-) rename src/charsel => charsel (98%) delete mode 100644 src/motd diff --git a/Makefile b/Makefile index e4adcff..cfed219 100644 --- a/Makefile +++ b/Makefile @@ -2,13 +2,12 @@ .RECIPEPREFIX := > install: ->chmod +x src/charsel +>chmod +x ./charsel >mkdir -p /usr/share/charsel/charfiles/ >cp charfiles/* /usr/share/charsel/charfiles/ >mkdir /usr/share/doc/charsel >cp README.md /usr/share/doc/charsel/ ->cp src/motd /usr/share/charsel ->cp src/charsel /usr/bin/ +>cp ./charsel /usr/bin/ uninstall: >rm -rf /usr/share/charsel/charfiles/ diff --git a/charfiles/german b/charfiles/german index 5140b40..9a4725b 100644 --- a/charfiles/german +++ b/charfiles/german @@ -1,11 +1,11 @@ -A Ä -O Ö -U Ü -S ẞ +A,Ä +O,Ö +U,Ü +S,ẞ --- -a ä -o ö -u ü -s ß +a,ä +o,ö +u,ü +s,ß -4 € +4,€ diff --git a/src/charsel b/charsel similarity index 98% rename from src/charsel rename to charsel index 84c0aff..24f342f 100755 --- a/src/charsel +++ b/charsel @@ -1,4 +1,5 @@ #!/usr/bin/env bash + # Merge both global and local charfiles CHARDIR=~/.cache/charsel @@ -27,9 +28,6 @@ CHARFILE=$CHARDIR/charfiles/$1 # Define length of shortcut LENGTH=$(cat $CHARFILE | cut -f 1 -d ',' -s | wc -L | cut -b 1) -# MOTD -cat $CHARDIR/motd - # Main program while : do diff --git a/src/motd b/src/motd deleted file mode 100644 index 3936842..0000000 --- a/src/motd +++ /dev/null @@ -1,3 +0,0 @@ -WELCOME TO CHARSEL! -FOR HELP, PLEASE USE `charsel help` - -- 2.39.2