diff options
author | tsxv478 <atvx717@infraredcombat.xyz> | 2022-11-23 07:29:47 +0300 |
---|---|---|
committer | tsxv478 <atvx717@infraredcombat.xyz> | 2022-11-23 07:29:47 +0300 |
commit | a22512091888df23b76969148e26f39a3b9910b7 (patch) | |
tree | 7419067d117f73bbd1833490970f75ab698e610d | |
parent | 32ddf11aa803e89b69c89adc41cc3f326a46aa95 (diff) |
bm copy notification
-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 |