#!/bin/sh
#BLURB="Some mods for Zenwalk"
TMP=/var/log/setup/tmp
if [ -r $TMP/SeTT_PX ]; then
 T_PX="`cat $TMP/SeTT_PX`"
elif [ ! "$1" = "" ]; then
 T_PX=$1
else
 T_PX=/
fi

if [ "$COLOR" = "on" -o -r $TMP/SeTcolor -o "$T_PX" = "/" ]; then 
  chroot $T_PX /bin/bash /var/zenwalk/postinstall
fi

