diff --git a/README.md b/README.md index 284ca46a..c87f3cc5 100644 --- a/README.md +++ b/README.md @@ -93,6 +93,7 @@ Just run `topgrade`. It will run the following steps: * ~/.config/bspwm * ~/.config/i3 * Powershell Profile + * [Microsoft Terminal](https://github.com/microsoft/terminal) configuration * Custom defined paths * **Unix**: Run [zr](https://github.com/jedahan/zr) update * **Unix**: Run [zplug](https://github.com/zplug/zplug) update diff --git a/src/main.rs b/src/main.rs index 139ccb73..48f013a1 100644 --- a/src/main.rs +++ b/src/main.rs @@ -259,6 +259,13 @@ fn run() -> Result<(), Error> { git_repos.insert(base_dirs.config_dir().join("i3")); } + #[cfg(windows)] + git_repos.insert( + base_dirs + .data_local_dir() + .join("Packages/Microsoft.WindowsTerminal_8wekyb3d8bbwe/LocalState"), + ); + if let Some(profile) = powershell.profile() { git_repos.insert(profile); }