hyprland config

This commit is contained in:
thatscringebro
2023-09-21 18:37:25 -04:00
parent fd3d6567dc
commit 98f7bd2701
62 changed files with 2843 additions and 0 deletions

View File

@@ -0,0 +1,13 @@
#!/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