fix(scripts): update paths

This commit is contained in:
Oliver Davies 2023-06-13 19:57:25 +01:00
parent 1a35b26bea
commit 0eee846185

5
bin/t
View file

@ -11,7 +11,10 @@ if [[ $# -eq 1 ]]; then
else
# Get the session name from fuzzy-finding list of directories and generating a
# tmux-safe version.
selected=$(find ~/Code -mindepth 1 -maxdepth 2 -type d ! -name .git | sort | fzf --reverse)
items=$(find ~/Code -mindepth 1 -maxdepth 2 -type d ! -name .git)
items+="$HOME/Code/dotfiles"
selected=$(echo "${items}" | sort | fzf --reverse)
fi
if [[ -z $selected ]]; then