Difference between revisions of "Template:Run with Java options"
Jump to navigation
Jump to search
Plebeian9000 (talk | contribs) |
Plebeian9000 (talk | contribs) m (→GUI fix) |
||
Line 9: | Line 9: | ||
== GUI fix == | == GUI fix == | ||
− | To have this | + | To have this setting apply automatically when running Bisq from a menu icon, you'll need to adjust the launcher files to run a script with the fix in it. |
1. Create the script, say <code>/opt/Bisq/Bisq-runner.sh</code>. | 1. Create the script, say <code>/opt/Bisq/Bisq-runner.sh</code>. |
Revision as of 22:54, 28 April 2021
Command-line fix
{{{2}}}
JAVA_TOOL_OPTIONS="{{{1}}}" /opt/Bisq/Bisq
You can adjust the scaling factor as you wish, of course, and add any runtime options for Bisq as well.
GUI fix
To have this setting apply automatically when running Bisq from a menu icon, you'll need to adjust the launcher files to run a script with the fix in it.
1. Create the script, say /opt/Bisq/Bisq-runner.sh
.
#!/bin/bash JAVA_TOOL_OPTIONS="{{{1}}}" /opt/Bisq/Bisq
2. Make it executable.
chmod +x /opt/Bisq/Bisq-runner.sh
3. Update the launcher (/opt/Bisq/Bisq.desktop
and/or /usr/share/applications/Bisq.desktop
).
... Exec=/opt/Bisq/Bisq-runner.sh ...