import React from 'react'; import ConfigSchemaItem from './config-schema-item'; import WorkspaceSection from './workspace-section'; import SendingSection from './sending-section'; class PreferencesGeneral extends React.Component { static displayName = 'PreferencesGeneral'; static propTypes = { config: React.PropTypes.object, configSchema: React.PropTypes.object, } render() { return (
N1 desktop notifications on Linux require Zenity. You may need to install it with your package manager (i.e., sudo apt-get install zenity).
); } } export default PreferencesGeneral;