summaryrefslogtreecommitdiff
path: root/firefox.sh.in
diff options
context:
space:
mode:
authorMartin Stransky <stransky@redhat.com>2018-04-30 14:57:50 +0200
committerMartin Stransky <stransky@redhat.com>2018-04-30 14:57:50 +0200
commit147b34c35a8cf250f67ea23681e514107d740b14 (patch)
treea73f12541cbbfd83f4dac76c27ecb3859924bd78 /firefox.sh.in
parentMerge branch 'master' into f27 (diff)
parentBuild with Wayland backend enabled (diff)
downloadlibrewolf-fedora-ff-147b34c35a8cf250f67ea23681e514107d740b14.tar.gz
librewolf-fedora-ff-147b34c35a8cf250f67ea23681e514107d740b14.tar.bz2
librewolf-fedora-ff-147b34c35a8cf250f67ea23681e514107d740b14.zip
Merge branch 'master' into f27
Diffstat (limited to 'firefox.sh.in')
-rw-r--r--firefox.sh.in4
1 files changed, 4 insertions, 0 deletions
diff --git a/firefox.sh.in b/firefox.sh.in
index c546795..f149564 100644
--- a/firefox.sh.in
+++ b/firefox.sh.in
@@ -239,6 +239,10 @@ do
esac
done
+if ! [ "$GDK_BACKEND" ]; then
+ export GDK_BACKEND=x11
+fi
+
# Run the browser
debugging=0
if [ $debugging = 1 ]
bgstack15