aboutsummaryrefslogtreecommitdiffstats
path: root/tmux_sessionizer.bash
diff options
context:
space:
mode:
authorMatthew Lemon <y@yulqen.org>2023-08-14 15:44:23 +0100
committerMatthew Lemon <y@yulqen.org>2023-08-14 15:44:23 +0100
commita1a8ca5d05003371f9304fb95088ad2504462113 (patch)
tree4084d160581f7bbbcbcf2cc7746310349b40e86f /tmux_sessionizer.bash
parent00c121102aa0c2ffa034cff3b230fdd035f9e3e2 (diff)
parentd6d3bf6a979bb0bbb47d4de788544461486870e8 (diff)
Properly handle path for projects
Diffstat (limited to 'tmux_sessionizer.bash')
-rwxr-xr-xtmux_sessionizer.bash2
1 files changed, 1 insertions, 1 deletions
diff --git a/tmux_sessionizer.bash b/tmux_sessionizer.bash
index cf8719d..8234d5e 100755
--- a/tmux_sessionizer.bash
+++ b/tmux_sessionizer.bash
@@ -3,7 +3,7 @@
if [[ $# -eq 1 ]]; then
selected=$1
else
- selected=$(find ~/code/python/ ~/Documents/ ~/Documents/Notes/ ~/ ~/Budget/hledger ~/bin -mindepth 1 -maxdepth 1 -type d | fzf)
+ selected=$(find ~/code/python ~/code/go ~/code/perl ~/code/bash ~/Documents/Notes ~/ ~/Budget/ledger/hledger ~/bin -mindepth 1 -maxdepth 1 -type d | fzf)
fi
if [[ -z $selected ]]; then