diff options
author | Matthew Lemon <y@yulqen.org> | 2023-08-20 04:32:23 +0100 |
---|---|---|
committer | Matthew Lemon <y@yulqen.org> | 2023-08-20 04:32:23 +0100 |
commit | ed42383a6422cf8d839d9d107c2732645b15fb30 (patch) | |
tree | 9502ed388d9eb0ba3158ec7ca59ab7d7b64424fa /tmux_sessionizer.bash | |
parent | a1a8ca5d05003371f9304fb95088ad2504462113 (diff) |
Better path handling
Diffstat (limited to 'tmux_sessionizer.bash')
-rwxr-xr-x | tmux_sessionizer.bash | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tmux_sessionizer.bash b/tmux_sessionizer.bash index 8234d5e..4e51e78 100755 --- a/tmux_sessionizer.bash +++ b/tmux_sessionizer.bash @@ -3,7 +3,7 @@ if [[ $# -eq 1 ]]; then selected=$1 else - selected=$(find ~/code/python ~/code/go ~/code/perl ~/code/bash ~/Documents/Notes ~/ ~/Budget/ledger/hledger ~/bin -mindepth 1 -maxdepth 1 -type d | fzf) + selected=$(find ~/code/ ~/Documents ~/ ~/Budget/ledger/hledger ~/bin -mindepth 1 -maxdepth 2 -type d | fzf) fi if [[ -z $selected ]]; then |