diff options
-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 387ada1..cf8719d 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/Notes ~/ ~/Budget/hledger ~/bin -mindepth 1 -maxdepth 1 -type d | fzf) + selected=$(find ~/code/python/ ~/Documents/ ~/Documents/Notes/ ~/ ~/Budget/hledger ~/bin -mindepth 1 -maxdepth 1 -type d | fzf) fi if [[ -z $selected ]]; then |