diff options
author | Sébastien Helleu <flashcode@flashtux.org> | 2021-05-02 11:56:25 +0200 |
---|---|---|
committer | Sébastien Helleu <flashcode@flashtux.org> | 2021-05-11 21:06:34 +0200 |
commit | 0f9640a5f33d4d0c76df75cb7a6cb07baac049f0 (patch) | |
tree | 7d09fe5119b11d4d38313098e6846e2413ff0a19 /src/plugins/fifo/fifo-command.c | |
parent | 4c5fcb743b2e512c407a09ca95d155c9e6edd2bd (diff) | |
download | weechat-0f9640a5f33d4d0c76df75cb7a6cb07baac049f0.zip |
core: split WeeChat home in 4 directories, use XDG directories by default (issue #1285)
The 4 directories (which can be the same):
- config: configuration files, certificates
- data: log/upgrade files, local plugins, scripts, xfer files
- cache: script repository, scripts downloaded (temporary location)
- runtime: FIFO pipe, relay UNIX sockets
Diffstat (limited to 'src/plugins/fifo/fifo-command.c')
-rw-r--r-- | src/plugins/fifo/fifo-command.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/src/plugins/fifo/fifo-command.c b/src/plugins/fifo/fifo-command.c index 3995fe379..11567d2bf 100644 --- a/src/plugins/fifo/fifo-command.c +++ b/src/plugins/fifo/fifo-command.c @@ -102,7 +102,8 @@ fifo_command_init () "\n" "FIFO pipe is used as remote control of WeeChat: you can send " "commands or text to the FIFO pipe from your shell.\n" - "By default the FIFO pipe is in ~/.weechat/weechat_fifo\n" + "By default the FIFO pipe is called weechat_fifo and saved in the " + "WeeChat runtime directory (see /debug dirs).\n" "\n" "The expected format is one of:\n" " plugin.buffer *text or command here\n" @@ -110,7 +111,7 @@ fifo_command_init () "\n" "For example to change your freenode nick:\n" " echo 'irc.server.freenode */nick newnick' " - ">~/.weechat/weechat_fifo\n" + ">/run/user/1000/weechat/weechat_fifo\n" "\n" "Please read the user's guide for more info and examples.\n" "\n" |