--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/bin/mute Wed Aug 15 04:51:16 2018 +0000
@@ -0,0 +1,3 @@
+#!/usr/bin/env bash
+
+amixer sset Master 0
--- a/stumpwmrc Mon Aug 13 22:20:33 2018 +0000
+++ b/stumpwmrc Wed Aug 15 04:51:16 2018 +0000
@@ -140,10 +140,6 @@
(vsplit)
(move-focus :down))
-(defcommand sane-move-window (direction)
- ((:direction "Enter a direction: "))
- (banish)
- (move-window direction))
(defcommand move-focus* (direction)
((:direction "Enter a direction: "))
@@ -255,10 +251,15 @@
("H-k" "move-focus up")
("H-l" "move-focus* right")
- ("H-H" "sane-move-window left")
- ("H-J" "sane-move-window down")
- ("H-K" "sane-move-window up")
- ("H-L" "sane-move-window right")
+ ("H-H" "move-window left")
+ ("H-J" "move-window down")
+ ("H-K" "move-window up")
+ ("H-L" "move-window right")
+
+ ("C-H-H" "exchange-direction left")
+ ("C-H-J" "exchange-direction down")
+ ("C-H-K" "exchange-direction up")
+ ("C-H-L" "exchange-direction right")
("H-n" "next-in-frame")
("H-p" "prev-in-frame")
--- a/vim/custom-dictionary.utf-8.add Mon Aug 13 22:20:33 2018 +0000
+++ b/vim/custom-dictionary.utf-8.add Wed Aug 15 04:51:16 2018 +0000
@@ -222,3 +222,4 @@
Topre
Realforce
Homebrew
+ASDF
--- a/weechat/plugins.conf Mon Aug 13 22:20:33 2018 +0000
+++ b/weechat/plugins.conf Wed Aug 15 04:51:16 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."