10 lines
206 B
Bash
Executable File
10 lines
206 B
Bash
Executable File
#!/bin/bash
|
|
|
|
if command /usr/bin/eww windows | grep *dd_capacity >> /dev/null ; then
|
|
echo "Dd open";
|
|
/usr/bin/eww close dd_capacity;
|
|
else
|
|
echo "Dd closed";
|
|
/usr/bin/eww open dd_capacity;
|
|
fi
|