From 562febaafebdcd2b700b692de68828e1d0a10f5d Mon Sep 17 00:00:00 2001 From: cinco euzebio Date: Sat, 28 Feb 2026 19:22:06 -0300 Subject: [PATCH] Remove personal path references from defaults and examples Replace machine-specific paths with generic examples. --- README.md | 1 + src/config.rs | 2 +- tmuxido.toml.example | 1 + 3 files changed, 3 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index c3375c8..f89d90a 100644 --- a/README.md +++ b/README.md @@ -40,6 +40,7 @@ Example configuration: # List of paths where to search for projects (git repositories) paths = [ "~/Projects", + # "~/work", ] # Maximum depth to search for .git directories diff --git a/src/config.rs b/src/config.rs index 8996944..e188db2 100644 --- a/src/config.rs +++ b/src/config.rs @@ -102,7 +102,7 @@ impl Config { paths: vec![ dirs::home_dir() .unwrap_or_default() - .join("Work/Projects") + .join("Projects") .to_string_lossy() .to_string(), ], diff --git a/tmuxido.toml.example b/tmuxido.toml.example index 5728699..a5bb554 100644 --- a/tmuxido.toml.example +++ b/tmuxido.toml.example @@ -19,6 +19,7 @@ paths = [ "~/Projects", + # "~/work", # "~/opensource", # "~/clients/company-name", ]