blob: 579071d05b1e096daed09ca9cee121cb65acff8c (
plain)
1
2
3
4
|
#!/usr/bin/env fish
set -l chosen_item (cliphist list | fuzzel --dmenu --placeholder='Type to search clipboard')
test -n "$chosen_item" && echo "$chosen_item" | cliphist decode | wl-copy
|