blob: 19dfb59d79fd32f3a1ea62a2c99d6b02e1e00afa (
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 50% --anchor bottom-right --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
  |