mirror of
https://github.com/JaKooLit/Debian-Hyprland.git
synced 2025-12-21 10:20:12 +01:00
14 lines
382 B
Bash
Executable File
14 lines
382 B
Bash
Executable File
#!/bin/bash
|
|
|
|
# WOFI STYLES
|
|
CONFIG="$HOME/.config/hypr/wofi/WofiBig/config"
|
|
STYLE="$HOME/.config/hypr/wofi/style.css"
|
|
COLORS="$HOME/.config/hypr/wofi/colors"
|
|
|
|
if [[ ! $(pidof wofi) ]]; then
|
|
cliphist list | wofi --show dmenu --prompt 'Search...' \
|
|
--conf ${CONFIG} --style ${STYLE} --color ${COLORS} \
|
|
--width=600 --height=400 | cliphist decode | wl-copy
|
|
else
|
|
pkill wofi
|
|
fi |