fix: Add a fix for LibreOffice flatpak to correct a printing bug

This commit is contained in:
Kyle Gospodnetich 2024-01-24 00:28:23 -08:00
parent e725c0f817
commit 9a22b180ac

View File

@ -1,7 +1,7 @@
#!/usr/bin/bash
# SCRIPT VERSION
VER=15
VER=16
VER_FILE="/etc/bazzite/flatpak_manager_version"
VER_RAN=$(cat $VER_FILE)
IMAGE_INFO="/usr/share/ublue-os/image-info.json"
@ -53,6 +53,13 @@ flatpak override \
--env=MOZ_USE_XINPUT2=1 \
org.mozilla.firefox
# Fix printing on LibreOffice
flatpak override \
--system \
--socket=cups \
--socket=session-bus \
org.libreoffice.LibreOffice
# Params needed for HW accelerated video on Nvidia (Ignoring hybrid systems)
if [[ $IMAGE_FLAVOR =~ "nvidia" ]] && [ $(grep -o "\-display" <<< $(lshw -C display) | wc -l) -le 1 ] && grep -q "vendor: NVIDIA Corporation" <<< $(lshw -C display); then
flatpak override \