Skip to content

Commit

Permalink
Merge remote-tracking branch 'origin/pr/214'
Browse files Browse the repository at this point in the history
* origin/pr/214:
  Use software rendering for Gio apps by default
  • Loading branch information
marmarek committed Jun 25, 2024
2 parents e5dfa7d + c76a730 commit 0bea6c2
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 0 deletions.
5 changes: 5 additions & 0 deletions appvm-scripts/etc/profile.d/qubes-gui.csh
Original file line number Diff line number Diff line change
@@ -1,2 +1,7 @@
setenv DISPLAY ":0"
setenv _JAVA_AWT_WM_NONREPARENTING "1"
if ( -f /var/run/qubes-service/software-rendering )
setenv GSK_RENDERER "cairo"
setenv GDK_DEBUG "gl-disable vulkan-disable"
setenv LIBGL_ALWAYS_SOFTWARE "1"
endif
4 changes: 4 additions & 0 deletions appvm-scripts/etc/profile.d/qubes-gui.sh
Original file line number Diff line number Diff line change
@@ -1 +1,5 @@
export DISPLAY=:0 _JAVA_AWT_WM_NONREPARENTING=1
if test -f /var/run/qubes-service/software-rendering; then
export GSK_RENDERER="cairo" GDK_DEBUG="gl-disable vulkan-disable" \
LIBGL_ALWAYS_SOFTWARE=1
fi

0 comments on commit 0bea6c2

Please sign in to comment.