mirror of
https://github.com/end-4/dots-hyprland.git
synced 2026-06-19 07:19:59 -05:00
12 lines
152 B
Bash
Executable File
12 lines
152 B
Bash
Executable File
#!/bin/sh
|
|
|
|
getopen(){
|
|
ans=$(eww windows | grep -e "$1")
|
|
if [ "${ans:0:1}" == "*" ]; then
|
|
echo "true"
|
|
else
|
|
echo "false"
|
|
fi
|
|
}
|
|
|
|
getopen $1 |