How to play notification sound for succesfull copy?
azzamsa opened this issue · 1 comments
azzamsa commented
Hi,
I need visual/audio feedback for a successful copy.
In Pano it is supported by default.
In CopyQ I use this script:
copyq:
if ( isClipboard() )
execute('pw-play', '/home/azzamsa/sounds/slick.ogg')
Is this possible with a cliphist?
Any scripting idea?
Thank you for cilphist! 🍨
azzamsa commented
Found the solution.
- keymap.conf
bind = Super, Y, exec, ~/opt/bin/nwlcopy #Y-ank
- nwlcopy
#!/bin/fish
set selection (cliphist list | fuzzel --dmenu | cliphist decode)
if test "$selection" != ""
echo "$selection" | wl-copy
end
- other
wl-paste --watch cliphist store
wl-paste --watch pw-play ~/sounds/hum.ogg
Credits: bugaevc/wl-clipboard#164 (comment)