Logic
You can include some logic in the INI file as follows:
#if hresolution gets the current screen resolution in pixels and checks if it is within the interval given by <horizontal screen resolution in pixels> ± 50 pixels.
#if hresolution = <horizontal screen resolution in pixels>
#else
#endif
#if truecolor gets the current color resolution and checks if it is truecolor, for example, above 256 colors.
#if truecolor
#else
#endif
Negation of truecolor is possible:
#if not truecolor
#else
#endif