# HG changeset patch # User Steve Losh # Date 1533149637 0 # Node ID b8fcc95eea5282bdeece0183415b15f3f1f974a6 # Parent e62e57d21745580820d1576b096a84a8c8e26f47 More diff -r e62e57d21745 -r b8fcc95eea52 bin/aug --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/bin/aug Wed Aug 01 18:53:57 2018 +0000 @@ -0,0 +1,3 @@ +#!/usr/bin/env bash + +sudo apt upgrade diff -r e62e57d21745 -r b8fcc95eea52 bin/scratch --- a/bin/scratch Thu Jul 26 15:17:30 2018 +0000 +++ b/bin/scratch Wed Aug 01 18:53:57 2018 +0000 @@ -2,6 +2,6 @@ set -euo pipefail -mkdir -p "$HOME/Desktop/scratch" -cd "$HOME/Desktop/scratch" -$EDITOR "$HOME/Desktop/scratch/scratch.$1" +mkdir -p "$HOME/scratch" +cd "$HOME/scratch" +$EDITOR "$HOME/scratch/scratch.$1" diff -r e62e57d21745 -r b8fcc95eea52 weechat/plugins.conf --- a/weechat/plugins.conf Thu Jul 26 15:17:30 2018 +0000 +++ b/weechat/plugins.conf Wed Aug 01 18:53:57 2018 +0000 @@ -76,6 +76,7 @@ python.slack.debug_level = "3" python.slack.debug_mode = "false" python.slack.distracting_channels = "" +python.slack.external_user_suffix = "*" python.slack.group_name_prefix = "&" python.slack.map_underline_to = "_" python.slack.migrated = "true" @@ -85,6 +86,7 @@ python.slack.render_italic_as = "italic" python.slack.send_typing_notice = "false" python.slack.server_aliases = "" +python.slack.shared_name_prefix = "%" python.slack.short_buffer_names = "false" python.slack.show_reaction_nicks = "false" python.slack.slack_api_token = "${sec.data.slack_token}" @@ -117,6 +119,7 @@ python.slack.debug_level = "Show only this level of debug info (or higher) when debug_mode is on. Lower levels -> more messages." python.slack.debug_mode = "Open a dedicated buffer for debug messages and start logging to it. How verbose the logging is depends on log_level." python.slack.distracting_channels = "List of channels to hide." +python.slack.external_user_suffix = "The suffix appended to nicks to indicate external users." python.slack.group_name_prefix = "The prefix of buffer names for groups (private channels)." python.slack.map_underline_to = "When sending underlined text to slack, use this formatting character for it. The default ("_") sends it as italics. Use "*" to send bold instead." python.slack.never_away = "Poke Slack every five minutes so that it never marks you "away"." @@ -125,6 +128,7 @@ python.slack.render_italic_as = "When receiving bold text from Slack, render it as this in weechat. If your terminal lacks italic support, consider using "underline" instead." python.slack.send_typing_notice = "Alert Slack users when you are typing a message in the input bar (Requires reload)" python.slack.server_aliases = "A comma separated list of `subdomain:alias` pairs. The alias will be used instead of the actual name of the slack (in buffer names, logging, etc). E.g `work:no_fun_allowed` would make your work slack show up as `no_fun_allowed` rather than `work.slack.com`." +python.slack.shared_name_prefix = "The prefix of buffer names for shared channels." python.slack.short_buffer_names = "Use `foo.#channel` rather than `foo.slack.com.#channel` as the internal name for Slack buffers. Overrides server_aliases." python.slack.show_reaction_nicks = "Display the name of the reacting user(s) alongside each reactji." python.slack.slack_api_token = "List of Slack API tokens, one per Slack instance you want to connect to. See the README for details on how to get these."