Compare commits

..

No commits in common. "9c141172d6c930895327e1387b53dda52fd5e9c1" and "3d3a56e0ee968f1f9fa56c7ec1ee64e215cca6a6" have entirely different histories.

2 changed files with 3 additions and 25 deletions

View File

@ -1,20 +0,0 @@
#!/usr/bin/env bash
set -e
projects=()
# Get list of projects from ~/Projects
for dir in $HOME/Projects/**/*; do
if [ -d $dir ]; then
projects+=(${dir#$HOME/Projects/})
fi
done
project=$(
echo "${projects[@]}" | tr ' ' '\n' | sort -u |
fzf --layout=reverse --info=hidden --border=rounded --cycle
)
tmux new-window -n $project -c "~/Projects/$project"
~/.local/share/tmux/layouts/window-auto

View File

@ -63,13 +63,11 @@ if -b '[ "`uname`" = "Darwin" ]' \
'set -g default-command "reattach-to-user-namespace -l $SHELL"'
# Open a popup with running the default shell
bind T display-popup -S fg=#54546D -b rounded -d '#{pane_current_path}' -E $SHELL
bind C-t display-popup -S fg=#54546D -b rounded -d '#{pane_current_path}' -E $SHELL
# Open a popup with session creator/switcher
bind S display-popup -B -w 60 -h 10 -E '~/.config/tmux/session.sh'
# Open a popup with project selector
bind P display-popup -B -w 60 -h 10 -E '~/.config/tmux/project.sh'
bind C-s display-popup -B -w 60 -h 10 -E '~/.config/tmux/session.sh'
# Open a popup to pick an interpreter then launch it
bind I display-popup -S fg=#54546D -b rounded -d '#{pane_current_path}' -E '$SHELL -i ~/.config/tmux/interpreter.sh'
bind C-i display-popup -S fg=#54546D -b rounded -d '#{pane_current_path}' -E '$SHELL -i ~/.config/tmux/interpreter.sh'
# Restore old next/previous window bindings
bind C-n next-window