Skip to content
This repository has been archived by the owner on Jan 6, 2025. It is now read-only.

Commit

Permalink
initial commit
Browse files Browse the repository at this point in the history
  • Loading branch information
xoureldeen committed Jul 16, 2024
1 parent 3e17e9f commit 7a2ab7d
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
Binary file modified .gradle/buildOutputCleanup/buildOutputCleanup.lock
Binary file not shown.
Original file line number Diff line number Diff line change
Expand Up @@ -32,14 +32,14 @@ public static String BoxvidraCmdLine(Context context) {
command.add("export " + var);
}

command.add("export WINEDEBUG=+all");
File prefixDir = new File(TermuxService.OPT_PATH + "/wine-prefixes/" + prefixName);

command.add("export DISPLAY=:0");
command.add("export PULSE_SERVER=tcp:127.0.0.1");
command.add("export WINEPREFIX='" + TermuxService.OPT_PATH + "/wine-prefixes/" + prefixName + "'");
command.add("export WINEPREFIX='" + prefixDir.getAbsolutePath() + "'");
command.add(";");

// Retrieve command options from JSON
File prefixDir = new File(TermuxService.OPT_PATH + "/wine-prefixes/" + prefixName);
File optionsFile = new File(prefixDir, "options.json");
try {
if (optionsFile.exists()) {
Expand Down

0 comments on commit 7a2ab7d

Please sign in to comment.