summaryrefslogtreecommitdiff
path: root/bm
diff options
context:
space:
mode:
authortsxv478 <vt0451@yandex.ru>2022-11-23 07:29:47 +0300
committertsxv478 <vt0451@yandex.ru>2022-11-23 07:29:47 +0300
commita3ed70075d25749e9582e8b3f43afe887d4f0517 (patch)
tree7419067d117f73bbd1833490970f75ab698e610d /bm
parent2e3cd5a7a52f08f45e768a777ce2d488b2bed81b (diff)
bm copy notification
Diffstat (limited to 'bm')
-rwxr-xr-xbm3
1 files changed, 2 insertions, 1 deletions
diff --git a/bm b/bm
index 69f9bb7..baffdfe 100755
--- a/bm
+++ b/bm
@@ -11,6 +11,7 @@ action=$(printf "Open in browser\nCopy to clipboard" | dmenu -i -c -l 2 -p "Acti
case $action in
"Open in browser") $BROWSER $bookmark ;;
- "Copy to clipboard") printf "%s" "$bookmark" | xclip -selection clipboard ;;
+ "Copy to clipboard") printf "%s" "$bookmark" | xclip -selection clipboard &&
+ notify-send "URL copied to clipboard" ;;
*) exit ;;
esac