/**
  * This method allows to setup high touch sensitivity status.
  *
  * @param status The new high touch sensitivity status
  * @return boolean Must be false if high touch sensitivity is not supported or the operation
  *     failed; true in any other case.
  */
 public static boolean setEnabled(boolean status) {
   return FileUtils.writeLine(COMMAND_PATH, status ? GLOVE_MODE_ENABLE : GLOVE_MODE_DISABLE);
 }