Sophie

Sophie

distrib > Mandriva > 9.1 > ppc > by-pkgid > f1989908d497e719868a750e8f45b421 > files > 11

xmmsctrl-1.6-2mdk.ppc.rpm

#!/bin/sh
# This little shell program tests if xmms playlist is displayed

state=$(xprop -name "$1" | grep "window state:" | cut -d\  -f3 )

if [ "$state" = "Normal" ]; then
 exit 0
else
 exit 1
fi