14 lines
313 B
Bash
Executable File
14 lines
313 B
Bash
Executable File
#!/bin/sh
|
|
|
|
# WOFI STYLES
|
|
CONFIG="$HOME/.config/wofi/WofiBig/config"
|
|
STYLE="$HOME/.config/wofi/style.css"
|
|
|
|
if [[ ! $(pidof wofi) ]]; then
|
|
cliphist list | wofi --show dmenu --prompt 'Search...' \
|
|
--conf ${CONFIG} --style ${STYLE} \
|
|
--width=600 --height=400 | cliphist decode | wl-copy
|
|
else
|
|
pkill wofi
|
|
fi
|