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

Compare commits

..

No commits in common. "fa79deeb05c0f10cc22a5a35fa1fc267f93302bd" and "7017703cab708de3ff9f0ea0da7ee318966bcc53" have entirely different histories.

2 changed files with 4 additions and 3 deletions

1
.gitignore vendored
View File

@ -1,7 +1,6 @@
bookmarks
.config/secrets
.config/gopass/gopass-logo-small.png
.config/gtk-2.0/gtkfilechooser.ini
.config/imgur-screenshot/credentials.conf
.config/mailnag/mailnag.dat

View File

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