17 lines
323 B
Plaintext
17 lines
323 B
Plaintext
|
function check {
|
||
|
if grep "desktop/icewm" /tmp/stage-2-choices >/dev/null 2>&1; then
|
||
|
return 0
|
||
|
else
|
||
|
return 1
|
||
|
fi
|
||
|
}
|
||
|
|
||
|
DESCRIPTION="Add some desktop backgrounds and randomly choose one on login"
|
||
|
|
||
|
PACKAGES=""
|
||
|
|
||
|
function post-install {
|
||
|
# TODO: configure
|
||
|
echo "extras/desktop-backgrounds" >> /tmp/stage-2-choices
|
||
|
}
|