diff options
author | tsxv478 <vt0451@yandex.ru> | 2022-11-23 07:29:47 +0300 |
---|---|---|
committer | tsxv478 <vt0451@yandex.ru> | 2022-11-23 07:29:47 +0300 |
commit | a3ed70075d25749e9582e8b3f43afe887d4f0517 (patch) | |
tree | 7419067d117f73bbd1833490970f75ab698e610d /bm | |
parent | 2e3cd5a7a52f08f45e768a777ce2d488b2bed81b (diff) |
bm copy notification
Diffstat (limited to 'bm')
-rwxr-xr-x | bm | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -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 |