Skip to content

Commit 1091972

Browse files
committed
fix: do not escape ; symbol in QT_QPA_PLATFORM env var
1 parent c64edf8 commit 1091972

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Configs/.local/share/hypr/env.conf

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
# Qt Variables - https://wiki.hyprland.org/Configuring/Environment-variables/#qt-variables
1818

1919
$env.QT_AUTO_SCREEN_SCALE_FACTOR = 1 # (From the Qt documentation) enables automatic scaling, based on the monitor’s pixel density
20-
$env.QT_QPA_PLATFORM = wayland\;xcb # Tell Qt applications to use the Wayland backend, and fall back to x11 if Wayland is unavailable
20+
$env.QT_QPA_PLATFORM = wayland;xcb # Tell Qt applications to use the Wayland backend, and fall back to x11 if Wayland is unavailable
2121

2222
$env.QT_WAYLAND_DISABLE_WINDOWDECORATION = 1 # Disables window decorations on Qt applications
2323
$env.QT_QPA_PLATFORMTHEME = qt6ct # Tells Qt based applications to pick your theme from qt5ct, use with Kvantum.
@@ -71,7 +71,7 @@ env = QT_AUTO_SCREEN_SCALE_FACTOR,1
7171
# hyprlang endif
7272

7373
# hyprlang if !QT_QPA_PLATFORM
74-
env = QT_QPA_PLATFORM,wayland\;xcb
74+
env = QT_QPA_PLATFORM,wayland;xcb
7575
# hyprlang endif
7676

7777
# hyprlang if !QT_WAYLAND_DISABLE_WINDOWDECORATION

0 commit comments

Comments
 (0)