blob: 4c84ccbf64b2ea98952c6033171e67da7e156c7e (
plain)
1
2
3
4
5
6
7
|
#!/bin/sh
post_install() {
if ! java -cp /usr/share/java/cryspmds/ SystemTrayIsSupported; then
printf >&2 'java.awt.SystemTray is not supported, application WILL crash on startup!\n'
fi
}
|