summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authortsxv478 <atvx717@infraredcombat.xyz>2022-11-23 07:29:47 +0300
committertsxv478 <atvx717@infraredcombat.xyz>2022-11-23 07:29:47 +0300
commita22512091888df23b76969148e26f39a3b9910b7 (patch)
tree7419067d117f73bbd1833490970f75ab698e610d
parent32ddf11aa803e89b69c89adc41cc3f326a46aa95 (diff)
bm copy notification
-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