mirror of
https://github.com/starr-dusT/dotfiles.git
synced 2025-02-19 19:27:31 -08:00
12 lines
301 B
Bash
12 lines
301 B
Bash
#!/usr/bin/env bash
|
|
# https://github.com/starr-dusT/dotfiles
|
|
|
|
tmuxp_files() {
|
|
ls ~/.config/tmuxp -1
|
|
}
|
|
|
|
selected="$(tmuxp_files | sed 's/.yml//g' | sort | fzf -e -i -m --reverse --delimiter / --with-nth -1)"
|
|
[ -z "$selected" ] && exit
|
|
echo "$selected"
|
|
tmuxp load "~/.config/tmuxp/$selected.yml" -y
|