dotfiles/hyprland/hypr/scripts/ClipManager.sh
2023-09-21 18:37:25 -04:00

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