#!/bin/sh

if test "x$_SBOX_DIR" = "x";then
  echo "Configuring Hildon Input Method"
  sudo /usr/bin/hildon-input-method-configurator.bin && exit 0
  exit 1
else
  echo "Configuring Hildon Input Method under SBOX"
  fakeroot /usr/bin/hildon-input-method-configurator.bin && exit 0
  exit 1
fi

