style/qt.nix: change comments

This commit is contained in:
Charlie Root 2024-09-03 21:50:29 +02:00
commit 4a8829a571

View file

@ -44,16 +44,16 @@ in {
# Scaling factor for QT applications # Scaling factor for QT applications
QT_AUTO_SCREEN_SCALE_FACTOR = "1"; QT_AUTO_SCREEN_SCALE_FACTOR = "1";
# Use wayland as the default backend, fall back to xcb if not available # Use wayland as the default backend.
QT_QPA_PLATFORM = "wayland;xcb"; QT_QPA_PLATFORM = "wayland";
# Disable window decorations for qt applications # Disable window decorations for qt applications.
QT_WAYLAND_DISABLE_WINDOWDECORATION = "1"; QT_WAYLAND_DISABLE_WINDOWDECORATION = "1";
# Remain compatible with QT5 whenever possible # Remain compatible with QT5 whenever possible.
DISABLE_QT_COMPAT = "0"; DISABLE_QT_COMPAT = "0";
# Tell Calibre to use the dark theme, because the light one hurts my eyes. # Tell Calibre to use the dark theme.
CALIBRE_USE_DARK_PALETTE = "1"; CALIBRE_USE_DARK_PALETTE = "1";
}; };
}; };