12 lines
339 B
Bash
12 lines
339 B
Bash
|
|
#
|
||
|
|
# ~/.config/profile.d/40_wayland.sh -- Environment variables for Wayland environments.
|
||
|
|
#
|
||
|
|
|
||
|
|
# Prefer wayland backends
|
||
|
|
export QT_QPA_PLATFORM="wayland-egl;wayland;xcb"
|
||
|
|
export SDL_VIDEODRIVER="wayland,x11"
|
||
|
|
export ELECTRON_OZONE_PLATFORM_HINT="auto"
|
||
|
|
|
||
|
|
# Fixes some potential issues in Java apps on Wayland
|
||
|
|
export _JAVA_AWT_WM_NONREPARENTING=1
|