2023-07-02 20:54:58 +02:00
|
|
|
function check {
|
2023-07-03 14:11:57 +02:00
|
|
|
[ "$INTERNET" = "down" ] && return 1
|
2023-07-02 20:54:58 +02:00
|
|
|
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 1
|
|
|
|
else
|
|
|
|
return 0
|
|
|
|
fi
|
|
|
|
else
|
|
|
|
return 1
|
|
|
|
fi
|
|
|
|
}
|
|
|
|
|
|
|
|
DESCRIPTION="Add tray icon for network and audio"
|
|
|
|
|
|
|
|
#TODO
|
|
|
|
PACKAGES=""
|
|
|
|
|
2023-07-03 12:40:12 +02:00
|
|
|
function post_install {
|
2023-07-02 20:54:58 +02:00
|
|
|
echo "systray/network-and-audio" >> /tmp/stage-2-choices
|
|
|
|
}
|