-
Notifications
You must be signed in to change notification settings - Fork 49
Description
Looking at plasma 6 I found those, added explanations I found. Maybe some of them could or should be added in startlxqt
. The last one could be interesting for mobile maybe.
QT_ACCESSIBILITY=1
The QT_ACCESSIBILITY environment variable, when set to 1, enables accessibility features in Qt-based applications. These features are designed to improve usability for individuals with disabilities by providing support for assistive technologies such as screen readers and magnifiers.
QT_EXCLUDE_GENERIC_BEARER=1
The QT_EXCLUDE_GENERIC_BEARER environment variable, when set to 1, excludes the generic network bearer plugin in Qt applications. This plugin is responsible for managing network connections in a platform-independent manner. By excluding it, Qt applications may rely solely on platform-specific network plugins, potentially optimizing performance or compatibility in certain environments.
QT_AUTO_SCREEN_SCALE_FACTOR=0
The QT_AUTO_SCREEN_SCALE_FACTOR environment variable, when set to 0, disables automatic scaling of the user interface based on the screen's pixel density or resolution in Qt applications. This means that the application won't automatically adjust its interface elements to match the screen's characteristics, allowing developers more control over how the UI is displayed on different screens.