From b5dabaf9fc9a8a31487ea27e709b2a812f1343c9 Mon Sep 17 00:00:00 2001
From: Oliver Davies <oliver@oliverdavies.uk>
Date: Fri, 24 Sep 2021 12:54:07 +0100
Subject: [PATCH] chore(tmux): search in ~/Documents/Books

---
 bin/bin/tmux-sessioniser | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/bin/bin/tmux-sessioniser b/bin/bin/tmux-sessioniser
index 6d388ba6..b42fe166 100755
--- a/bin/bin/tmux-sessioniser
+++ b/bin/bin/tmux-sessioniser
@@ -11,7 +11,7 @@ if [[ $# -eq 1 ]]; then
 else
   # Get the session name from fuzzy-finding list of directories and generating a
   # tmux-safe version.
-  selected=$(find ~/ ~/Code ~/Code/clients ~/Code/os ~/Code/Personal ~/Documents/Talks/ -mindepth 1 -maxdepth 1 -type d -not -name ".*" | sort | fzf)
+  selected=$(find ~/ ~/Code ~/Code/clients ~/Code/os ~/Code/Personal ~/Documents/Books ~/Documents/Talks/ -mindepth 1 -maxdepth 1 -type d -not -name ".*" | sort | fzf)
 fi
 
 if [[ -z $selected ]]; then