11 lines
105 B
Bash
Executable file
11 lines
105 B
Bash
Executable file
#!/bin/sh
|
|
|
|
main() {
|
|
if ! pgrep -x spotify >/dev/null; then
|
|
echo "";exit
|
|
fi
|
|
|
|
echo "怜"
|
|
}
|
|
|
|
main "$@"
|