From b2734ac316fee0f101d1aba7918a70c45b285769 Mon Sep 17 00:00:00 2001 From: tavo-wasd <gustavo@gustavocalvo.xyz> Date: Mon, 31 Jul 2023 17:34:07 -0600 Subject: [PATCH] nerd fonts! --- scripts/dmenu-addbookmark | 6 +++--- scripts/dmenu-bookmarks | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/scripts/dmenu-addbookmark b/scripts/dmenu-addbookmark index 70921ad..d4e3afb 100755 --- a/scripts/dmenu-addbookmark +++ b/scripts/dmenu-addbookmark @@ -5,10 +5,10 @@ bookmark="$(xsel -ob)" if grep -q "$bookmark" "$HOME/Documents/bookmarks" ; then - notify-send "Bookmarks" "Already bookmarked" + notify-send " Bookmarks" "Already bookmarked" else name="$(dmenu -p 'Bookmark name:' < /dev/null)" entry="$name-$bookmark" - echo "$entry" >> "$HOME/.config/bookmarks" - notify-send "Bookmarks" "Added $entry" + echo "$entry" >> "$HOME/Documents/bookmarks" + notify-send " Bookmarks" "Added $entry" fi diff --git a/scripts/dmenu-bookmarks b/scripts/dmenu-bookmarks index 89e8876..ec00acb 100755 --- a/scripts/dmenu-bookmarks +++ b/scripts/dmenu-bookmarks @@ -5,4 +5,4 @@ name=$(cut -d '-' -f 1 $HOME/Documents/bookmarks | grep -v '^#' | sed '/^\s*$/d' | dmenu -i -p "Site:") [ -z "$name" ] && exit -grep "$name" ~/.config/bookmarks | cut -d '-' -f 2- | xsel -ib && notify-send " $name" "Copied to clipboard" +grep "$name" ~/.config/bookmarks | cut -d '-' -f 2- | xsel -ib && notify-send " Bookmarks" "$name copied to clipboard"