18 lines
301 B
Plaintext
18 lines
301 B
Plaintext
|
function check {
|
||
|
if grep "desktop/none" /tmp/stage-2-choices >/dev/null 2>&1; then
|
||
|
return 1
|
||
|
else
|
||
|
return 0
|
||
|
fi
|
||
|
}
|
||
|
|
||
|
#TODO
|
||
|
DESCRIPTION="Fully featured (list of things with htop)"
|
||
|
|
||
|
#TODO
|
||
|
PACKAGES=""
|
||
|
|
||
|
function post-install {
|
||
|
echo "utilities/desktop-integrated-htop" >> /tmp/stage-2-choices
|
||
|
}
|