1
0
mirror of https://github.com/frebib/dotfiles.git synced 2024-06-14 12:57:23 +00:00

scripts/fontawesome: simplify subshell calls

This commit is contained in:
Joe Groocock 2020-03-22 23:09:04 +00:00
parent 7017703cab
commit 90fc09e1a9
Signed by: frebib
GPG Key ID: E0B16BEACFBB6A86

View File

@ -57,9 +57,8 @@ function notify() {
}
function display() {
fontawesome=$(cat "$FONTAWESOME_FILE" | grep -v '#' | grep -v '^[[:space:]]*$')
update=""$'\t'"Update Font Awesome cache"
fontawesome=$(printf "$fontawesome\n$update")
update=$'\tUpdate Font Awesome cache'
fontawesome=$(grep -v '#\|^[[:space:]]*$' "$FONTAWESOME_FILE"; printf "$update\n")
line=$(echo "$fontawesome" | rofi -dmenu -i -p fontawesome -normal-window -kb-custom-1 Ctrl+c -kb-row-tab '' -kb-row-select Tab $@)
exit_code=$?
@ -69,7 +68,6 @@ function display() {
return
fi
#IFS=$'\t'
line=($line)
last=${line[${#line[@]}-1]}