]> git.armaanb.net Git - charsel.git/blobdiff - charsel
update readme, fix -n bug, remove branding
[charsel.git] / charsel
diff --git a/charsel b/charsel
index 7938a1c251847e106e55ddad6a63fb33b6b75242..d9dcb0f9b2a298c6e123f13bce0d8eba530c4c88 100755 (executable)
--- a/charsel
+++ b/charsel
@@ -1,29 +1,11 @@
 #!/usr/bin/env bash
-
-#######################################################################
-
-# (C) Copyright Armaan Bhojwani, 2020
-
-# This program is free software: you can redistribute it and/or modify
-# it under the terms of the GNU General Public License as published by
-# the Free Software Foundation, either version 3 of the License, or
-# (at your option) any later version.
-
-# This program is distributed in the hope that it will be useful,
-# but WITHOUT ANY WARRANTY; without even the implied warranty of
-# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
-# GNU General Public License for more details.
-
-# You should have received a copy of the GNU General Public License
-# along with this program.  If not, see <https://www.gnu.org/licenses/>.
-
-########################################################################
-
-VERSION=2.0.8
+# Charsel - terminal character selector
+# Copyright Armaan Bhojwani 2020, MIT License
 
 # Define argument functions
 function usage() {
   echo "Usage: /usr/bin/charsel [OPTION]... [CHARFILE]...
+
 A simple terminal character selector
   -a         include hidden shortcodes
   -b         disable color support
@@ -33,8 +15,6 @@ A simple terminal character selector
   -L         show installed charfiles without the message
   -l         show installed charfiles
   -n         dont copy character to clipboard, avoids Xclip dependency
-  -V         check for updates
-  -v         print current version
 
 Exit status:
    0         okay,
@@ -44,21 +24,9 @@ Exit status:
    4         other error"
 }
 
-function version_check(){
-  NEW_VERSION=$(curl -s https://codeberg.org/armaan/charsel/raw/branch/master/charsel \
-    | grep VERSION= | tail -c +9)
-  if [[ $VERSION != $NEW_VERSION ]]
-  then
-    echo "an update is available"
-  else
-    echo "you are up to date"
-  fi
-
-}
-
 CHARDIR=$HOME/.cache/charsel
 function list() {
-  ls $CHARDIR/charfiles
+  ls "$CHARDIR"/charfiles
 }
 
 function readme() {
@@ -72,44 +40,32 @@ function missing_charfile() {
 }
 
 # Merge global and local charfiles
-if [[ -d $CHARDIR ]]
-then
-  rm -rf $CHARDIR/*
+if [[ -d $CHARDIR ]]; then
+  rm -rf "${CHARDIR:?}"/*
 else
-  mkdir $CHARDIR
+  mkdir "$CHARDIR"
 fi
 
 LOCALCHARDIR=$HOME/.local/share/charsel/charfiles
-if [[ ! -d $LOCALCHARDIR ]]
-then
-  mkdir -p $LOCALCHARDIR
-fi
+[[ -d $LOCALCHARDIR ]] || mkdir -p "$LOCALCHARDIR"
 
-localdirfiles=($LOCALCHARDIR/*)
-if [[ ! -z "${#localdirfiles[*]}" ]]
-then
-  cp -rf $LOCALCHARDIR/../* $CHARDIR
-fi
+localdirfiles="$LOCALCHARDIR"/*
+[[ -n "${#localdirfiles[*]}" ]] && cp -rf "$LOCALCHARDIR"/../* "$CHARDIR"
 
 globaldirfiles=($/usr/share/charfiles/)
-if [[ ! -z "${#globaldirfiles[*]}" ]]
-then
-  cp -rf /usr/share/charsel/* $CHARDIR
-fi
+[[ -n "${#globaldirfiles[*]}" ]] && cp -rf /usr/share/charsel/* "$CHARDIR"
 
 # Check if charfile exists
 CHARFILE="$CHARDIR/charfiles/$2"
 function existence() {
-  if [[ ! -f $CHARFILE ]]
-  then
+  if [[ ! -f $CHARFILE ]]; then
     missing_charfile
   fi
 }
 
 # VERY basic syntax check
 function validity() {
-  if [[ $(grep , $CHARFILE && grep - $CHARFILE) ]]
-  then
+  if [[ $(grep , "$CHARFILE" && grep - "$CHARFILE") ]]; then
     echo "valid charfile"
   else
     existence
@@ -151,14 +107,6 @@ do
       ;;
     n)
       COPY="no"
-      ;; 
-    v)
-      echo "charsel" $VERSION
-      exit 0
-      ;;
-    V)
-      version_check
-      exit 0
       ;;
     ?)
       echo "Invalid option"
@@ -174,30 +122,22 @@ if [ $# -eq 0 ]; then
   charsel -l
   exit 3
 fi
+
 # Redefine charfile and check file validity
 CHARFILE="$CHARDIR/charfiles/$1"
 existence
 validity
 
 # Dependency check
-if [[ ! $COPY == "no" ]]
-then
-  if [[ -x xclip ]]
-  then
+if [[ $COPY == "no" ]]; then
+  if [[ ! -x /usr/bin/xclip ]]; then
     echo "Please install xclip."
     exit 4
   fi
 fi
 
-if [[ $(echo $LANG | grep UTF-8) -ne 0 ]]
-then
-  echo "Please enable unicode support"
-  exit 4
-fi
-
 # Define length of shortcode
-LENGTH=$(cat $CHARFILE \
-  | cut -f 1 -d ',' -s \
+LENGTH=$(cut "$CHARFILE" -f 1 -d ',' -s \
   | wc -L \
   | cut -b 1)
 
@@ -207,12 +147,8 @@ clear
 bold=$(tput bold)
 normal=$(tput sgr0)
 
-if [[ $COLOR == bw ]]
-then
-  magenta=$(tput setaf 7)
-else
-  magenta=$(tput setaf 5)
-fi
+highlight=$(tput setaf 5)
+[[ $COLOR == bw ]] && highlight=$(tput setaf 7)
 
 white=$(tput setaf 7)
 
@@ -221,53 +157,45 @@ while true
 do
   # Format output
   echo "*---------*---------------*"
-  echo "| ${bold}${magenta}CHARSEL${white}${normal} |" $1
+  echo "| ${bold}${highlight}CHARSEL${white}${normal} |" "$1"
   echo "*---------*---------------*"
   echo ""
 
-  if [[ $SHOWALL == true ]]
-  then
-    cat $CHARFILE | sed -e '/^[ \t]*#/d' | tail -n +2 \
+  if [[ $SHOWALL == true ]]; then
+    sed "$CHARFILE" -e '/^[ \t]*#/d' | tail -n +2 \
       | column -t -N "input","output" --output-separator ' | ' --separator ','
   else
-    cat $CHARFILE | sed -e '/^[ \t]*#/d' | grep -A 100 - | tail -n +2 \
+    sed "$CHARFILE" -e '/^[ \t]*#/d' | grep -A 100 - | tail -n +2 \
       | column -t -N "input","output" --output-separator ' | ' --separator ','
   fi
 
   echo ""
   echo "*-------------------------*"
-  echo "| previous shorcode:" $INPUT
-  echo "| previous output:  " $OUTPUT
+  echo "| previous shorcode:" "$(echo $INPUT)"
+  echo "| previous output:  " "$OUTPUT"
   echo "*-------------------------*"
 
   # User input
-  read -p "| ${bold}input shortcode: ${normal}  " -N $LENGTH INPUT
+  read -r -p "| ${bold}input shortcode: ${normal}  " -N "$LENGTH" INPUT
 
-  if [[ $INPUT == ";"* ]] # Semicolon exts
-  then
+  if [[ $INPUT == ";"* ]]; then # Semicolon exts
     clear
     exit 0
-  elif [[ $INPUT == " "* ]]  # Spaces dont count
-  then
-    OUTPUT=""
-    clear
   else
     # Finds line number of shortcode
-    LINENUMBER=$(cut -f 1 -d ',' -s $CHARFILE | grep -wn $INPUT | cut -d : -f 1)
+    LINENUMBER=$(cut -f 1 -d ',' -s "$CHARFILE" | grep -wn "$INPUT" | cut -d : -f 1)
 
     # Outputs character selected above
-    OUTPUT=$(cut -f 2 -d ',' -s $CHARFILE | head -$LINENUMBER | tail +$LINENUMBER)
+    OUTPUT=$(cut -f 2 -d ',' -s "$CHARFILE" | head -"$LINENUMBER" | tail +"$LINENUMBER")
 
     # Check to see if the shortcode actually exists
-    if [[ $(cut -f 1 -d ',' -s $CHARFILE | grep -wnc $INPUT) == "0" ]]
-    then
+    if [[ $(cut -f 1 -d ',' -s "$CHARFILE" | grep -wnc "$INPUT") == "0" ]]; then
       OUTPUT=""
     fi
 
     # Copy output to clipboard
-    if [[ ! $COPY == "no" ]]
-    then
-      echo -n $OUTPUT | xclip -selection clipboard
+    if [[ ! $COPY == "no" ]]; then
+      echo -n "$OUTPUT" | xclip -selection clipboard
     fi
 
     clear