From 4387ee91cf388be1a2769755c5993e1f35497602 Mon Sep 17 00:00:00 2001 From: sinanmohd Date: Mon, 20 Mar 2023 17:12:40 +0530 Subject: font: switch to font awesome for icons --- dpass | 19 +++++++++---------- 1 file changed, 9 insertions(+), 10 deletions(-) (limited to 'dpass') diff --git a/dpass b/dpass index e1592b2..99654b2 100755 --- a/dpass +++ b/dpass @@ -3,12 +3,19 @@ pass_store_dir="${PASSWORD_STORE_DIR:-$HOME/.pass}" menu="wmenu" -die() +note() { : "${1:?}" command -v notify-send > /dev/null && - notify-send " dpass" "$1" + notify-send "󰟵 dpass" "$1" +} + +die() +{ + : "${1:?}" + + note "$1" printf "\033[31;1merr: %b\033[0m\n" "$1" exit "${2:-1}" @@ -26,14 +33,6 @@ dep_check() unset dep } -note() -{ - : "${1:?}" - - command -v notify-send > /dev/null && - notify-send "󰟵 dpass" "$1" -} - search() { # usage: search directory -- cgit v1.2.3