summaryrefslogtreecommitdiff
path: root/firefox.sh.in
diff options
context:
space:
mode:
Diffstat (limited to 'firefox.sh.in')
-rw-r--r--firefox.sh.in8
1 files changed, 4 insertions, 4 deletions
diff --git a/firefox.sh.in b/firefox.sh.in
index 2274b1b..76df06b 100644
--- a/firefox.sh.in
+++ b/firefox.sh.in
@@ -74,11 +74,11 @@ if ! [ $MOZ_DISABLE_WAYLAND ] && [ "$WAYLAND_DISPLAY" ]; then
if [ "$XDG_CURRENT_DESKTOP" == "GNOME" ]; then
export MOZ_ENABLE_WAYLAND=1
fi
-## Remove comments to enable Wayland on KDE/Sway
+## Enable Wayland on KDE/Sway
##
-## if [ "$XDG_SESSION_TYPE" == "wayland" ]; then
-## export MOZ_ENABLE_WAYLAND=1
-## fi
+ if [ "$XDG_SESSION_TYPE" == "wayland" ]; then
+ export MOZ_ENABLE_WAYLAND=1
+ fi
fi
##
bgstack15