21 lines
363 B
Plaintext
21 lines
363 B
Plaintext
|
function check {
|
||
|
if grep "desktop/icewm" /tmp/stage-2-choices >/dev/null 2>&1; then
|
||
|
if grep "audio/none" /tmp/stage-2-choices >/dev/null 2>&1; then
|
||
|
return 0
|
||
|
else
|
||
|
return 1
|
||
|
fi
|
||
|
else
|
||
|
return 1
|
||
|
fi
|
||
|
}
|
||
|
|
||
|
DESCRIPTION="Add tray icon for network"
|
||
|
|
||
|
#TODO
|
||
|
PACKAGES=""
|
||
|
|
||
|
function post-install {
|
||
|
echo "systray/network" >> /tmp/stage-2-choices
|
||
|
}
|