From 23fefbebd028601667b5e7500a0fe9b7f10c1b7c Mon Sep 17 00:00:00 2001 From: Alex Nordlund Date: Tue, 18 Apr 2017 09:55:47 +0200 Subject: Updates README to give correct instructions for settings. --- README.md | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) (limited to 'README.md') diff --git a/README.md b/README.md index 7a207dd..216770b 100644 --- a/README.md +++ b/README.md @@ -88,7 +88,7 @@ weechat #### 4. Add your Slack API key(s) ``` -/set plugins.var.python.slack_extension.slack_api_token [YOUR_SLACK_TOKEN] +/set plugins.var.python.slack.slack_api_token [YOUR_SLACK_TOKEN] ``` ^^ (find this at https://api.slack.com/custom-integrations/legacy-tokens using the "Request token" button) @@ -97,13 +97,13 @@ If you don't want to store your API token in plaintext you can use the secure fe ``` /secure passphrase this is a super secret password /secure set slack_token [YOUR_SLACK_TOKEN] -/set plugins.var.python.slack_extension.slack_api_token ${sec.data.slack_token} +/set plugins.var.python.slack.slack_api_token ${sec.data.slack_token} ``` ##### Optional: If you would like to connect to multiple groups, use the above command with multiple tokens separated by commas. (NO SPACES) ``` -/set plugins.var.python.slack_extension.slack_api_token [token1],[token2],[token3] +/set plugins.var.python.slack.slack_api_token [token1],[token2],[token3] ``` ### 5. $PROFIT$ @@ -214,22 +214,22 @@ Optional settings Turn off colorized nicks: ``` -/set plugins.var.python.slack_extension.colorize_nicks 0 +/set plugins.var.python.slack.colorize_nicks 0 ``` Turn on colorized messages (messages match nick color): ``` -/set plugins.var.python.slack_extension.colorize_nicks 1 +/set plugins.var.python.slack.colorize_nicks 1 ``` Set channel prefix to something other than my-slack-subdomain.slack.com (e.g. when using buffers.pl): ``` -/set plugins.var.python.slack_extension.server_alias.my-slack-subdomain "mysub" +/set plugins.var.python.slack.server_alias.my-slack-subdomain "mysub" ``` Show who added each reaction. Makes reactions appear like `[:smile:(@nick1,@nick2)]` instead of `[:smile:2]`. ``` -/set plugins.var.python.slack_extension.show_reaction_nicks on +/set plugins.var.python.slack.show_reaction_nicks on ``` Show typing notification in main bar (slack_typing_notice): -- cgit