dotfiles with stow

This commit is contained in:
Michael Chalupiak
2024-09-05 19:14:30 -04:00
parent 2c44971f2f
commit 00f346b438
99 changed files with 28618 additions and 0 deletions

12
config/.scripts/enter-dev.sh Executable file
View File

@@ -0,0 +1,12 @@
dir="$(cat ~/.scripts/store/projects | fzf | cut -d\ -f1)"
if [ -z "$dir" ]; then
return
fi
if [ -n "$(command -v tmux)" ] && [ -z "$TMUX" ]; then
tmux new-session -d -c $dir
# tmux send-keys -t 0 C-z kak Enter
tmux attach
else
cd $dir
kak
fi