From 3b7a395c3515e0f6196e310590078d6dbe5a841f Mon Sep 17 00:00:00 2001 From: afonso Date: Sun, 20 Oct 2024 01:41:22 +0100 Subject: [PATCH] [scripts] added obsidian vaults to tms --- .local/bin/tms | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.local/bin/tms b/.local/bin/tms index 46cf1b9..40731ab 100755 --- a/.local/bin/tms +++ b/.local/bin/tms @@ -6,10 +6,11 @@ else uni_projects=$(find ~/projects/University -mindepth 3 -maxdepth 3 -type d) personal_projects=$(find ~/projects/Personal -mindepth 1 -maxdepth 1 -type d) work_projects=$(find ~/projects/Work -mindepth 1 -maxdepth 1 -type d) + vaults=$(find ~/vaults/ -mindepth 2 -maxdepth 2 -type d) gits=$(find ~/gits -mindepth 1 -maxdepth 1 -type d) dotfiles=$(find ~/.config -mindepth 1 -maxdepth 1 -type d) #Merge the two lists - selected=$(echo -e "$uni_projects\n$personal_projects\n$work_projects\n$dotfiles\n$gits" | fzf) + selected=$(echo -e "$uni_projects\n$personal_projects\n$work_projects\n$dotfiles\n$gits\n$vaults" | fzf) fi if [[ -z $selected ]]; then