Difference between revisions of "Template:Run with Java options"
Plebeian9000 (talk | contribs) |
|||
(6 intermediate revisions by 2 users not shown) | |||
Line 1: | Line 1: | ||
== Command-line fix == | == Command-line fix == | ||
− | {{{2}}} | + | {{{2}}}: |
− | JAVA_TOOL_OPTIONS="{{{1}}}" /opt/Bisq/Bisq | + | JAVA_TOOL_OPTIONS="{{{1}}}" /opt/bisq/bin/Bisq |
+ | |||
+ | <code>/opt/bisq/bin/Bisq</code> is the default application directory on Linux. If you run another operating system, you'll need to replace that path with [[Running_from_the_command_line|the one for your OS]]. | ||
You can adjust the scaling factor as you wish, of course, and add any [[Command_line_options|runtime options for Bisq]] as well. | You can adjust the scaling factor as you wish, of course, and add any [[Command_line_options|runtime options for Bisq]] as well. | ||
Line 9: | Line 11: | ||
== GUI fix == | == GUI fix == | ||
− | To | + | To be able to launch the fix by double clicking an icon, rather than running a command in CLI, you can edit the launcher file to run, instead of the Bisq app directly, a shell script which injects said fix. |
− | 1. Create | + | 1. Create a text file (for example <code>/opt/bisq/Bisq-runner.sh</code>) containing the following code: |
#!/bin/bash | #!/bin/bash | ||
− | JAVA_TOOL_OPTIONS="{{{1}}}" /opt/ | + | JAVA_TOOL_OPTIONS="{{{1}}}" /opt/bisq/bin/Bisq |
− | 2. Make it executable | + | 2. Make it executable: |
− | chmod +x /opt/ | + | chmod +x /opt/bisq/Bisq-runner.sh |
− | 3. | + | 3. Edit the launcher file (<code>/opt/bisq/Bisq.desktop</code> and/or <code>/usr/share/applications/Bisq.desktop</code>) by opening it in a text editor and modifying the <code>Exec</code> line like follows: |
− | + | Exec=/opt/bisq/Bisq-runner.sh | |
− | Exec=/opt/ | ||
− |
Latest revision as of 23:21, 23 July 2022
Command-line fix
{{{2}}}:
JAVA_TOOL_OPTIONS="{{{1}}}" /opt/bisq/bin/Bisq
/opt/bisq/bin/Bisq
is the default application directory on Linux. If you run another operating system, you'll need to replace that path with the one for your OS.
You can adjust the scaling factor as you wish, of course, and add any runtime options for Bisq as well.
GUI fix
To be able to launch the fix by double clicking an icon, rather than running a command in CLI, you can edit the launcher file to run, instead of the Bisq app directly, a shell script which injects said fix.
1. Create a text file (for example /opt/bisq/Bisq-runner.sh
) containing the following code:
#!/bin/bash JAVA_TOOL_OPTIONS="{{{1}}}" /opt/bisq/bin/Bisq
2. Make it executable:
chmod +x /opt/bisq/Bisq-runner.sh
3. Edit the launcher file (/opt/bisq/Bisq.desktop
and/or /usr/share/applications/Bisq.desktop
) by opening it in a text editor and modifying the Exec
line like follows:
Exec=/opt/bisq/Bisq-runner.sh