/**
  * This method returns the current activation status of high touch sensitivity
  *
  * @return boolean Must be false if high touch sensitivity is not supported or not activated, or
  *     the operation failed while reading the status; true in any other case.
  */
 public static boolean isEnabled() {
   return FileUtils.readOneLine(COMMAND_RESULT_PATH).equals(GLOVE_MODE_ENABLE + STATUS_OK);
 }