diff --git a/layout/_layout b/layout/_layout index 907c97e..f4be2c7 100644 --- a/layout/_layout +++ b/layout/_layout @@ -1,7 +1,7 @@ #compdef layout __get_layouts() { - ls -1 ~/.config/tmux/layouts 2>/dev/null | \ + ls -1 ~/.local/share/tmux/layouts 2>/dev/null | \ while read -r layout; do echo $layout; done } diff --git a/layout/layout.plugin.zsh b/layout/layout.plugin.zsh index f78f648..72895d8 100644 --- a/layout/layout.plugin.zsh +++ b/layout/layout.plugin.zsh @@ -2,7 +2,7 @@ layout() { if [[ "$1" == "" ]]; then echo "usage: layout [name]" else - tmux source-file ~/.config/tmux/layouts/$1 + tmux source-file ~/.local/share/tmux/layouts/$1 if [[ "$2" != "" ]]; then tmux rename-window $2 fi