From 6b5da066f6b2454c0e60322ff68bdfc5814174ce Mon Sep 17 00:00:00 2001 From: felix Date: Thu, 19 Dec 2019 13:46:16 +0100 Subject: [PATCH] Pull sway configuration (#278) --- README.md | 1 + src/main.rs | 1 + 2 files changed, 2 insertions(+) diff --git a/README.md b/README.md index c87f3cc5..0611fb18 100644 --- a/README.md +++ b/README.md @@ -92,6 +92,7 @@ Just run `topgrade`. It will run the following steps: * ~/.config/openbox * ~/.config/bspwm * ~/.config/i3 + * ~/.config/sway * Powershell Profile * [Microsoft Terminal](https://github.com/microsoft/terminal) configuration * Custom defined paths diff --git a/src/main.rs b/src/main.rs index c23f4252..37075f3c 100644 --- a/src/main.rs +++ b/src/main.rs @@ -251,6 +251,7 @@ fn run() -> Result<()> { git_repos.insert(base_dirs.config_dir().join("openbox")); git_repos.insert(base_dirs.config_dir().join("bspwm")); git_repos.insert(base_dirs.config_dir().join("i3")); + git_repos.insert(base_dirs.config_dir().join("sway")); } #[cfg(windows)]