From b44848a12ba5ecc4c5c060afd2a102609d9784a3 Mon Sep 17 00:00:00 2001 From: PROTechThor Date: Sat, 21 Nov 2020 12:02:25 +0100 Subject: [PATCH 1/2] Add App Troubleshooting --- doc.md | 1 + .../application-troubleshooting.md | 44 +++++++++++++++++++ 2 files changed, 45 insertions(+) create mode 100644 external/troubleshooting/application-troubleshooting.md diff --git a/doc.md b/doc.md index 9b5982ab..db43e368 100644 --- a/doc.md +++ b/doc.md @@ -283,6 +283,7 @@ For more, please see [Qubes Community Documentation](https://github.com/Qubes-Co * [Sony Vaio Troubleshooting](/doc/sony-vaio-tinkering/) * [Intel Integrated Graphics Troubleshooting](/doc/intel-igfx-troubleshooting/) * [Multiboot Troubleshooting](/doc/multiboot/#troubleshooting) + * [Application Troubleshooting](/doc/application-troubleshooting/) ### Building Guides diff --git a/external/troubleshooting/application-troubleshooting.md b/external/troubleshooting/application-troubleshooting.md new file mode 100644 index 00000000..434e5117 --- /dev/null +++ b/external/troubleshooting/application-troubleshooting.md @@ -0,0 +1,44 @@ +--- +layout: doc +title: Application Troubleshooting +permalink: /doc/application-troubleshooting/ +--- + +# Troubleshooting default applications on Qubes # + +## Fullscreen Firefox is frozen ## + +Press F11 twice. + +## Firefox crashes ## + +If you are facing frequent crashes or lags when using Firefox browser (especially when watching videos), you may need to turn off Hardware Acceleration. You can do this by navigating to "Preferences", then "Performance". Untick the "Use recommended performance settings" checkbox, followed by "Use hardware acceleration when available". + +If this doesn't fix the issue, try turning off smooth scrolling by unticking "Use smoothing scrolling" under the "Browsing" section. + +## LibreOffice open as a tiny window ## + +Some programs like LibreOffice open as a tiny window -- small enough that the content of the file is not even visible. + +You can open LibreOffice as a larger window using this workaround: + +### Using the command line +1. In the VM where you want to open the LibreOffice, open the `registrymodifications.xcu` file in an editor: + ~~~ + sudo nano ~/.config/libreoffice/4/user/registrymodifications.xcu + ~~~ + +2. Find the lines containing `ooSetupFactoryWindowAttributes`. It will look like this: +~~~ +61,61,1807,982;5;38,56,1807,982; + +3. We are interested in the values between the `` tag. These window position values are specified as: `x-pos,y-pos,width,height ; window-state ; maximized-x-pos,maximized-y-pos,maximized-width,maximized-height`. Edit the third and fourth values to your desired width and height (for example, to 1800 and 900). +4. Do this once for every template and the program will always open at this size. + +### Using the GUI +1. Open any Libreoffice app. +2. Navigate to the "Tools" menu, select "Options", then "Advanced". Click the "Open Expert Configuration" button. +3. Search for "ooSetupFactoryWindowAttributes". +4. Scroll right to see the values set for each component as a string value. For example: `61,61,1807,982;5;38,56,1807,982;`. These window position values are specified as: `x-pos,y-pos,width,height ; window-state ; maximized-x-pos,maximized-y-pos,maximized-width,maximized-height`. Edit the third and fourth values to your desired width and height (for example, to 1800 and 900). +5. Do this once for every template and the program will always open at this size. + From 3ab2e059c15011405eaf0dec5e25587326bf2ceb Mon Sep 17 00:00:00 2001 From: Enjeck Cleopatra <32180937+PROTechThor@users.noreply.github.com> Date: Sat, 21 Nov 2020 12:06:05 +0100 Subject: [PATCH 2/2] Add ~~~ and space --- external/troubleshooting/application-troubleshooting.md | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/external/troubleshooting/application-troubleshooting.md b/external/troubleshooting/application-troubleshooting.md index 434e5117..b8aa8d79 100644 --- a/external/troubleshooting/application-troubleshooting.md +++ b/external/troubleshooting/application-troubleshooting.md @@ -29,8 +29,9 @@ You can open LibreOffice as a larger window using this workaround: ~~~ 2. Find the lines containing `ooSetupFactoryWindowAttributes`. It will look like this: -~~~ -61,61,1807,982;5;38,56,1807,982; + ~~~ + 61,61,1807,982;5;38,56,1807,982; + ~~~ 3. We are interested in the values between the `` tag. These window position values are specified as: `x-pos,y-pos,width,height ; window-state ; maximized-x-pos,maximized-y-pos,maximized-width,maximized-height`. Edit the third and fourth values to your desired width and height (for example, to 1800 and 900). 4. Do this once for every template and the program will always open at this size.