mirror of
https://github.com/end-4/dots-hyprland.git
synced 2026-06-21 16:29:57 -05:00
14 lines
308 B
Bash
Executable File
14 lines
308 B
Bash
Executable File
#!/usr/bin/bash
|
|
state=$(eww get open_visualizer)
|
|
|
|
if [[ "$state" == "true" || "$1" == "--close" ]]; then
|
|
eww update open_visualizer=false
|
|
sleep 0.15
|
|
eww close visualizer
|
|
eww update cavajson='[]'
|
|
else
|
|
cd ~/.config/eww || exit
|
|
eww open visualizer
|
|
eww update open_visualizer=true
|
|
fi
|