From 8ab3c15983b72045f84e2abd6d395dfaff9feca7 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 | 4 ++-- src/config.rs | 2 +- tmuxido.toml.example | 5 ++--- 3 files changed, 5 insertions(+), 6 deletions(-) diff --git a/README.md b/README.md index b73e7ca..f89d90a 100644 --- a/README.md +++ b/README.md @@ -39,8 +39,8 @@ Example configuration: ```toml # List of paths where to search for projects (git repositories) paths = [ - "~/Work/Projects", - "~/Work/DECEA/ATD/repos/gitlab.devops.decea.intraer", + "~/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 b07e442..a5bb554 100644 --- a/tmuxido.toml.example +++ b/tmuxido.toml.example @@ -18,9 +18,8 @@ # Supports ~ for home directory expansion paths = [ - "~/Work/Projects", - "~/Work/DECEA/ATD/repos/gitlab.devops.decea.intraer", - # "~/personal", + "~/Projects", + # "~/work", # "~/opensource", # "~/clients/company-name", ]