blob: f6a177a130587f9b5441f096732aa7afbe2a702b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
#!/bin/sh
if [ "$MENUCMD" = "tofi" ]
then
menucmd="tofi --width 30% --height 20% --padding-left 2% --matching-algorithm normal"
elif [ "$MENUCMD" = "dmenu" ]
then
menucmd="dmenu -l 10 -g 1 -x -i"
else
menucmd="fzf"
fi
cliphist list |
$menucmd |
cliphist decode |
wl-copy -n
|