mirror of
https://git.disroot.org/FollieHiyuki/dotfiles.git
synced 2024-11-25 16:58:38 -05:00
19 lines
374 B
Plaintext
19 lines
374 B
Plaintext
|
#!/bin/sh
|
||
|
|
||
|
case $1 in
|
||
|
--wofi)
|
||
|
clipman pick --tool wofi -T'-p "Clipboard " -i -O default'
|
||
|
;;
|
||
|
--bemenu)
|
||
|
clipman pick --tool bemenu -T'-p "Clipboard: " -i -l 10'
|
||
|
;;
|
||
|
--fzf)
|
||
|
clipman pick --tool fzf -T'--no-multi -e'
|
||
|
;;
|
||
|
--clear)
|
||
|
clipman clear --all && notify-send -i $HOME/.config/mako/clipboard.png "Clipboard cleared"
|
||
|
;;
|
||
|
*)
|
||
|
;;
|
||
|
esac
|