dotfiles/.config/eww/scripts/toggle_nowplaying.sh
2025-05-28 18:33:04 +02:00

15 lines
220 B
Bash
Executable File

#!/bin/bash
WID="eversolo-main"
if eww list-windows | grep -q "$WID"; then
if eww active-windows | grep -q "$WID"; then
eww close "$WID"
else
eww open "$WID"
fi
else
eww open "$WID"
fi