Skip to content

Commit

Permalink
Fix .tmux output suggesting incorrect target path. (#415)
Browse files Browse the repository at this point in the history
The previous `.tmux` output instructed users to update their TPM run command to `run ~/.local/share/...`, which is typically represented by `XDG_DATA_HOME`. However, the directions also told users to then move the corresponding `.tmux` directory to `XDG_CONFIG_HOME/tmux`.

The two halves of the instructions were conflicting. To resolve this, this commit fixes the second half of the instructions with the correct target path (i.e., `XDG_DATA_HOME`).
  • Loading branch information
orendain authored Jun 17, 2024
1 parent d56175d commit 3d65bfc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion programs/tmux.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
{
"path": "$HOME/.tmux",
"movable": true,
"help": "Set this in your tmux.conf:\n\n```set-environment -g TMUX_PLUGIN_MANAGER_PATH '~/.local/share/tmux/plugins'```\n\nThen update the path to tpm to:\n\n```run '~/.local/share/tmux/plugins/tpm/tpm'```\n\nNow move .tmux to _XDG_CONFIG_HOME_/tmux.\n"
"help": "Set this in your tmux.conf:\n\n```set-environment -g TMUX_PLUGIN_MANAGER_PATH '~/.local/share/tmux/plugins'```\n\nThen update the path to tpm to:\n\n```run '~/.local/share/tmux/plugins/tpm/tpm'```\n\nNow move .tmux to _XDG_DATA_HOME_/tmux.\n"
}
]
}

0 comments on commit 3d65bfc

Please sign in to comment.