diff --git a/src/Resources/Locales/en_US.xaml b/src/Resources/Locales/en_US.xaml
index a9c38d00..2adc8524 100644
--- a/src/Resources/Locales/en_US.xaml
+++ b/src/Resources/Locales/en_US.xaml
@@ -363,7 +363,7 @@
Fetch remotes automatically (need restart)
Restore windows
Enable crash report (maybe include related path)
- Use Windows Terminal to open Git terminal
+ Use Windows Terminal instead of cmd.exe
GIT SETTING
Install Path
Input path for git.exe
diff --git a/src/Views/Widgets/Dashboard.xaml.cs b/src/Views/Widgets/Dashboard.xaml.cs
index 3a6b7c22..f067cff1 100644
--- a/src/Views/Widgets/Dashboard.xaml.cs
+++ b/src/Views/Widgets/Dashboard.xaml.cs
@@ -320,7 +320,7 @@ namespace SourceGit.Views.Widgets {
Process.Start(new ProcessStartInfo {
WorkingDirectory = repo.Path,
FileName = "wt",
- Arguments = bash,
+ Arguments = $"-d \"{repo.Path}\" \"{bash}\"",
UseShellExecute = false,
});
} else {