this.colorSets = InitHelper.getColorPalettes(fileUtils);
//choose sound implementation
if (ph.isAudioAware()) {
try {
sound = new SoundMinim(ph.getSoundSilenceThreshold());
} catch (Exception e) {
LOG.log(Level.WARNING, "FAILED TO INITIALIZE SOUND INSTANCE. Disable sound input.");
} catch (Error e) {
LOG.log(Level.WARNING, "FAILED TO INITIALIZE SOUND INSTANCE (Error). Disable sound input.", e);
}