From 5f7aeaccbce21157b6ef9d74b658fac8ea8e8585 Mon Sep 17 00:00:00 2001 From: Zachary Dunn Date: Sat, 17 Aug 2019 10:39:54 -0400 Subject: [PATCH] Update vim and git configs --- .byobu/.metadata_available | 0 .byobu/.screenrc | 0 .byobu/.ssh-agent | 1 + .byobu/.tmux.conf | 5 + .byobu/backend | 1 + .byobu/color | 3 + .byobu/color.tmux | 4 + .byobu/datetime.tmux | 2 + .byobu/keybindings | 1 + .byobu/keybindings.tmux | 4 + .byobu/profile | 1 + .byobu/profile.tmux | 1 + .byobu/prompt | 2 + .byobu/status | 37 + .byobu/statusrc | 78 + .byobu/windows | 0 .byobu/windows.tmux | 1 + .gitconfig | 3 + .gitignore | 0 .profile | 30 + .viminfo | 594 +- .weechat/alias.conf | 57 + .weechat/aspell.conf | 20 + .weechat/buflist.conf | 39 + .weechat/charset.conf | 18 + .weechat/exec.conf | 19 + .weechat/fifo.conf | 14 + .weechat/fset.conf | 95 + .weechat/irc.conf | 195 + .weechat/iset.conf | 37 + .weechat/logger.conf | 35 + .weechat/logs/core.weechat.weechatlog | 589 + .weechat/logs/irc.server.tilde.weechatlog | 836 ++ .weechat/logs/irc.tilde.#meta.weechatlog | 12362 ++++++++++++++++ .weechat/logs/irc.tilde.#team.weechatlog | 2596 ++++ .weechat/logs/irc.tilde.#vim.weechatlog | 6 + .weechat/perl.conf | 14 + .weechat/perl/autoload/highmon.pl | 1 + .weechat/perl/autoload/iset.pl | 1 + .weechat/perl/highmon.pl | 1139 ++ .weechat/perl/iset.pl | 1462 ++ .weechat/plugins.conf | 68 + .weechat/python.conf | 14 + .weechat/python/apply_corrections.py | 351 + .weechat/python/autojoin.py | 177 + .weechat/python/autoload/apply_corrections.py | 1 + .weechat/python/autoload/autojoin.py | 1 + .weechat/python/autoload/grep.py | 1 + .weechat/python/autoload/otr.py | 1 + .weechat/python/autoload/urlview.py | 1 + .weechat/python/grep.py | 1731 +++ .weechat/python/otr.py | 2062 +++ .weechat/python/urlview.py | 57 + .weechat/relay.conf | 55 + .weechat/ruby.conf | 14 + .weechat/script.conf | 56 + .weechat/script/plugins.xml.gz | Bin 0 -> 127955 bytes .weechat/sec.conf | 18 + .weechat/spell.conf | 33 + .weechat/trigger.conf | 59 + .weechat/weechat.conf | 688 + .weechat/weechat.log | 22 + .weechat/xfer.conf | 48 + 63 files changed, 25476 insertions(+), 285 deletions(-) create mode 100644 .byobu/.metadata_available create mode 100644 .byobu/.screenrc create mode 120000 .byobu/.ssh-agent create mode 100644 .byobu/.tmux.conf create mode 100644 .byobu/backend create mode 100644 .byobu/color create mode 100644 .byobu/color.tmux create mode 100644 .byobu/datetime.tmux create mode 100644 .byobu/keybindings create mode 100644 .byobu/keybindings.tmux create mode 100644 .byobu/profile create mode 100644 .byobu/profile.tmux create mode 100644 .byobu/prompt create mode 100644 .byobu/status create mode 100644 .byobu/statusrc create mode 100644 .byobu/windows create mode 100644 .byobu/windows.tmux create mode 100644 .gitconfig create mode 100644 .gitignore create mode 100644 .profile create mode 100644 .weechat/alias.conf create mode 100644 .weechat/aspell.conf create mode 100644 .weechat/buflist.conf create mode 100644 .weechat/charset.conf create mode 100644 .weechat/exec.conf create mode 100644 .weechat/fifo.conf create mode 100644 .weechat/fset.conf create mode 100644 .weechat/irc.conf create mode 100644 .weechat/iset.conf create mode 100644 .weechat/logger.conf create mode 100644 .weechat/logs/core.weechat.weechatlog create mode 100644 .weechat/logs/irc.server.tilde.weechatlog create mode 100644 .weechat/logs/irc.tilde.#meta.weechatlog create mode 100644 .weechat/logs/irc.tilde.#team.weechatlog create mode 100644 .weechat/logs/irc.tilde.#vim.weechatlog create mode 100644 .weechat/perl.conf create mode 120000 .weechat/perl/autoload/highmon.pl create mode 120000 .weechat/perl/autoload/iset.pl create mode 100644 .weechat/perl/highmon.pl create mode 100644 .weechat/perl/iset.pl create mode 100644 .weechat/plugins.conf create mode 100644 .weechat/python.conf create mode 100644 .weechat/python/apply_corrections.py create mode 100644 .weechat/python/autojoin.py create mode 120000 .weechat/python/autoload/apply_corrections.py create mode 120000 .weechat/python/autoload/autojoin.py create mode 120000 .weechat/python/autoload/grep.py create mode 120000 .weechat/python/autoload/otr.py create mode 120000 .weechat/python/autoload/urlview.py create mode 100644 .weechat/python/grep.py create mode 100644 .weechat/python/otr.py create mode 100644 .weechat/python/urlview.py create mode 100644 .weechat/relay.conf create mode 100644 .weechat/ruby.conf create mode 100644 .weechat/script.conf create mode 100644 .weechat/script/plugins.xml.gz create mode 100644 .weechat/sec.conf create mode 100644 .weechat/spell.conf create mode 100644 .weechat/trigger.conf create mode 100644 .weechat/weechat.conf create mode 100644 .weechat/weechat.log create mode 100644 .weechat/xfer.conf diff --git a/.byobu/.metadata_available b/.byobu/.metadata_available new file mode 100644 index 0000000..e69de29 diff --git a/.byobu/.screenrc b/.byobu/.screenrc new file mode 100644 index 0000000..e69de29 diff --git a/.byobu/.ssh-agent b/.byobu/.ssh-agent new file mode 120000 index 0000000..d000cd7 --- /dev/null +++ b/.byobu/.ssh-agent @@ -0,0 +1 @@ +/tmp/ssh-UI91oyhHWT/agent.12829 \ No newline at end of file diff --git a/.byobu/.tmux.conf b/.byobu/.tmux.conf new file mode 100644 index 0000000..e1629e9 --- /dev/null +++ b/.byobu/.tmux.conf @@ -0,0 +1,5 @@ +new -s tilde -n chat 'weechat-curses'; +neww -n mail 'neomutt'; +neww -n shell; +send-keys -t ":2" byobu-info Enter; + diff --git a/.byobu/backend b/.byobu/backend new file mode 100644 index 0000000..ac0eb76 --- /dev/null +++ b/.byobu/backend @@ -0,0 +1 @@ +BYOBU_BACKEND=tmux diff --git a/.byobu/color b/.byobu/color new file mode 100644 index 0000000..1ee73ad --- /dev/null +++ b/.byobu/color @@ -0,0 +1,3 @@ +BACKGROUND=k +FOREGROUND=w +MONOCHROME=0 \ No newline at end of file diff --git a/.byobu/color.tmux b/.byobu/color.tmux new file mode 100644 index 0000000..4f55dc7 --- /dev/null +++ b/.byobu/color.tmux @@ -0,0 +1,4 @@ +BYOBU_DARK="\#333333" +BYOBU_LIGHT="\#EEEEEE" +BYOBU_ACCENT="\#75507B" +BYOBU_HIGHLIGHT="\#DD4814" diff --git a/.byobu/datetime.tmux b/.byobu/datetime.tmux new file mode 100644 index 0000000..7b888a7 --- /dev/null +++ b/.byobu/datetime.tmux @@ -0,0 +1,2 @@ +BYOBU_DATE="%Y-%m-%d " +BYOBU_TIME="%H:%M:%S" diff --git a/.byobu/keybindings b/.byobu/keybindings new file mode 100644 index 0000000..9d9bbdb --- /dev/null +++ b/.byobu/keybindings @@ -0,0 +1 @@ +source $BYOBU_PREFIX/share/byobu/keybindings/common diff --git a/.byobu/keybindings.tmux b/.byobu/keybindings.tmux new file mode 100644 index 0000000..eb3d92e --- /dev/null +++ b/.byobu/keybindings.tmux @@ -0,0 +1,4 @@ +unbind-key -n C-a +set -g prefix ^A +set -g prefix2 F12 +bind a send-prefix diff --git a/.byobu/profile b/.byobu/profile new file mode 100644 index 0000000..230ac0e --- /dev/null +++ b/.byobu/profile @@ -0,0 +1 @@ +source $BYOBU_PREFIX/share/byobu/profiles/common diff --git a/.byobu/profile.tmux b/.byobu/profile.tmux new file mode 100644 index 0000000..9ccca51 --- /dev/null +++ b/.byobu/profile.tmux @@ -0,0 +1 @@ +source $BYOBU_PREFIX/share/byobu/profiles/tmux diff --git a/.byobu/prompt b/.byobu/prompt new file mode 100644 index 0000000..7b5c6e8 --- /dev/null +++ b/.byobu/prompt @@ -0,0 +1,2 @@ +[ -r /usr/share/byobu/profiles/bashrc ] && . /usr/share/byobu/profiles/bashrc #byobu-prompt# + diff --git a/.byobu/status b/.byobu/status new file mode 100644 index 0000000..ac9bd5d --- /dev/null +++ b/.byobu/status @@ -0,0 +1,37 @@ +# status - Byobu's default status enabled/disabled settings +# +# Override these in $BYOBU_CONFIG_DIR/status +# where BYOBU_CONFIG_DIR is XDG_CONFIG_HOME if defined, +# and $HOME/.byobu otherwise. +# +# Copyright (C) 2009-2011 Canonical Ltd. +# +# Authors: Dustin Kirkland +# +# This program is free software: you can redistribute it and/or modify +# it under the terms of the GNU General Public License as published by +# the Free Software Foundation, version 3 of the License. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with this program. If not, see . + +# Status beginning with '#' are disabled. + +# Screen has two status lines, with 4 quadrants for status +screen_upper_left="color" +screen_upper_right="color whoami hostname ip_address menu" +screen_lower_left="color logo distro release #arch session" +screen_lower_right="color network #disk_io custom #entropy raid reboot_required updates_available #apport #services #mail users uptime #ec2_cost #rcs_cost #fan_speed #cpu_temp battery wifi_quality #processes load_average cpu_count cpu_freq memory #swap disk #time_utc date time" + +# Tmux has one status line, with 2 halves for status +tmux_left="logo #distro release #arch session" +# You can have as many tmux right lines below here, and cycle through them using Shift-F5 +tmux_right="#network #disk_io #custom #entropy raid reboot_required updates_available #apport #services #mail #users uptime #ec2_cost #rcs_cost #fan_speed #cpu_temp #battery #wifi_quality #processes load_average cpu_count cpu_freq memory #swap disk #whoami #hostname #ip_address #time_utc date time" +#tmux_right="network #disk_io #custom entropy raid reboot_required updates_available #apport #services #mail users uptime #ec2_cost #rcs_cost fan_speed cpu_temp battery wifi_quality #processes load_average cpu_count cpu_freq memory #swap #disk whoami hostname ip_address #time_utc date time" +#tmux_right="network #disk_io custom #entropy raid reboot_required updates_available #apport #services #mail users uptime #ec2_cost #rcs_cost #fan_speed #cpu_temp battery wifi_quality #processes load_average cpu_count cpu_freq memory #swap #disk #whoami #hostname ip_address #time_utc date time" +#tmux_right="#network disk_io #custom entropy #raid #reboot_required #updates_available #apport #services #mail #users #uptime #ec2_cost #rcs_cost fan_speed cpu_temp #battery #wifi_quality #processes #load_average #cpu_count #cpu_freq #memory #swap whoami hostname ip_address #time_utc disk date time" diff --git a/.byobu/statusrc b/.byobu/statusrc new file mode 100644 index 0000000..472e45c --- /dev/null +++ b/.byobu/statusrc @@ -0,0 +1,78 @@ +# statusrc - Byobu's default status configurations +# +# Override these in $BYOBU_CONFIG_DIR/statusrc +# where BYOBU_CONFIG_DIR is XDG_CONFIG_HOME if defined, +# and $HOME/.byobu otherwise. +# +# Copyright (C) 2009-2011 Canonical Ltd. +# +# Authors: Dustin Kirkland +# +# This program is free software: you can redistribute it and/or modify +# it under the terms of the GNU General Public License as published by +# the Free Software Foundation, version 3 of the License. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with this program. If not, see . + +# Configurations that you can override; if you leave these commented out, +# Byobu will try to auto-detect them. + +# This should be auto-detected for most distro, but setting it here will save +# some call to lsb_release and the like. +#BYOBU_DISTRO=Ubuntu + +# Default: depends on the distro (which is either auto-detected, either set +# via $DISTRO) +#LOGO="\o/" + +# Abbreviate the release to N characters +# By default, this is disabled. But if you set RELEASE_ABBREVIATED=1 +# and your lsb_release is "precise", only "p" will be displayed +#RELEASE_ABBREVIATED=1 + +# Default: / +#MONITORED_DISK=/ + +# Minimum disk throughput that triggers the notification (in kB/s) +# Default: 50 +#DISK_IO_THRESHOLD=50 + +# Default: eth0 +#MONITORED_NETWORK=eth0 + +# Unit used for network throughput (either bits per second or bytes per second) +# Default: bits +#NETWORK_UNITS=bytes + +# Minimum network throughput that triggers the notification (in kbit/s) +# Default: 20 +#NETWORK_THRESHOLD=20 + +# You can add an additional source of temperature here +#MONITORED_TEMP=/proc/acpi/thermal_zone/THM0/temperature + +# Default: C +#TEMP=F + +#SERVICES="eucalyptus-nc|NC eucalyptus-cloud|CLC eucalyptus-walrus eucalyptus-cc|CC eucalyptus-sc|SC" + +#FAN=$(find /sys -type f -name fan1_input | head -n1) + +# You can set this to 1 to report your external/public ip address +# Default: 0 +#IP_EXTERNAL=0 + +# The users notification normally counts ssh sessions; set this configuration to '1' +# to instead count number of distinct users logged onto the system +# Default: 0 +#USERS_DISTINCT=0 + +# Set this to zero to hide seconds int the time display +# Default 1 +#TIME_SECONDS=0 diff --git a/.byobu/windows b/.byobu/windows new file mode 100644 index 0000000..e69de29 diff --git a/.byobu/windows.tmux b/.byobu/windows.tmux new file mode 100644 index 0000000..0e6d287 --- /dev/null +++ b/.byobu/windows.tmux @@ -0,0 +1 @@ +attach; diff --git a/.gitconfig b/.gitconfig new file mode 100644 index 0000000..50164be --- /dev/null +++ b/.gitconfig @@ -0,0 +1,3 @@ +[user] + email = zack@tilde.team + name = Zachary Dunn diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..e69de29 diff --git a/.profile b/.profile new file mode 100644 index 0000000..7c6aab9 --- /dev/null +++ b/.profile @@ -0,0 +1,30 @@ +# ~/.profile: executed by the command interpreter for login shells. +# This file is not read by bash(1), if ~/.bash_profile or ~/.bash_login +# exists. +# see /usr/share/doc/bash/examples/startup-files for examples. +# the files are located in the bash-doc package. + +# the default umask is set in /etc/profile; for setting the umask +# for ssh logins, install and configure the libpam-umask package. +#umask 022 + +# if running bash +if [ -n "$BASH_VERSION" ]; then + # include .bashrc if it exists + if [ -f "$HOME/.bashrc" ]; then + . "$HOME/.bashrc" + fi +fi + +# set PATH so it includes user's private bin if it exists +if [ -d "$HOME/bin" ] ; then + PATH="$HOME/bin:$PATH" +fi + +# set PATH so it includes user's private bin if it exists +if [ -d "$HOME/.local/bin" ] ; then + PATH="$HOME/.local/bin:$PATH" +fi + +_byobu_sourced=1 . /usr/bin/byobu-launch 2>/dev/null || true + diff --git a/.viminfo b/.viminfo index 643ad1f..5bf038c 100644 --- a/.viminfo +++ b/.viminfo @@ -21,13 +21,13 @@ $: # Command Line History (newest to oldest): :x -|2,0,1566050545,,"x" +|2,0,1566052755,,"x" +:qa +|2,0,1566052561,,"qa" +:w +|2,0,1566052181,,"w" :qallqa |2,0,1566050543,,"qallqa" -:w -|2,0,1566050542,,"w" -:qa -|2,0,1566050515,,"qa" :e ~/.bash_aliases |2,0,1566050475,,"e ~/.bash_aliases" :sp .bash_aliases @@ -233,45 +233,58 @@ $: # Registers: "0 LINE 0 - body_begin_file="before_body.template" -|3,0,0,1,1,0,1565025032,"body_begin_file=\"before_body.template\"" -"1 LINE 0 + bin/ +|3,0,0,1,1,0,1566052410,"bin/" +""1 LINE 0 + *.un~ + .ssh/ + .dotfiles/ + .vim/sessions/ + bin/ + gems/ + work/ + sent + Maildir/ +|3,1,1,1,9,0,1566052754,"*.un~",".ssh/",".dotfiles/",".vim/sessions/","bin/","gems/","work/","sent","Maildir/" +"2 LINE 0 329 ls 330 history 331 history 5 > build-release -|3,0,1,1,3,0,1565623688," 329 ls"," 330 history"," 331 history 5 > build-release" -"2 LINE 0 +|3,0,2,1,3,0,1565623688," 329 ls"," 330 history"," 331 history 5 > build-release" +"3 LINE 0 ## It Worked `bb` lets your preview the webpage before posting so I verified that it work -|3,0,2,1,3,0,1565025727,"","## It Worked","`bb` lets your preview the webpage before posting so I verified that it work" -"3 LINE 0 - as soon as you exit your editor. -|3,0,3,1,1,0,1565025589,"as soon as you exit your editor." +|3,0,3,1,3,0,1565025727,"","## It Worked","`bb` lets your preview the webpage before posting so I verified that it work" "4 LINE 0 - The rest of the text file is a **Markdown** blog post. The process will continue -|3,0,4,1,1,0,1565025555,"The rest of the text file is a **Markdown** blog post. The process will continue" + as soon as you exit your editor. +|3,0,4,1,1,0,1565025589,"as soon as you exit your editor." "5 LINE 0 - Title on this line -|3,0,5,1,1,0,1565025536,"Title on this line" + The rest of the text file is a **Markdown** blog post. The process will continue +|3,0,5,1,1,0,1565025555,"The rest of the text file is a **Markdown** blog post. The process will continue" "6 LINE 0 -
- You may want to read: How to ~tilde: Getting Started - for help. -

-|3,0,9,1,4,0,1564838713,"

"," You may want to read: How to ~tilde: Getting Started"," for help.","

" -"a CHAR 0 - -|3,0,10,0,1,0,1561941720," " + # set ruby env +|3,0,9,1,1,0,1564840260,"# set ruby env " +"a LINE 0 + *.un~ + .ssh/ + .dotfiles/ + .vim/sessions/ + bin/ + gems/ + work/ + sent + Maildir/ +|3,0,10,1,9,0,1566052754,"*.un~",".ssh/",".dotfiles/",".vim/sessions/","bin/","gems/","work/","sent","Maildir/" "b CHAR 0 f{a jkf}i; €kbjkkw |3,0,11,0,1,0,1561039196,"f{a jkf}i; €kbjkkw" @@ -456,246 +469,270 @@ $: "y LINE 0 title: "Index - #{instance_config(:site_name)}", |3,0,34,1,1,0,1558707855," title: \"Index - #{instance_config(:site_name)}\"," -""- CHAR 0 - /local -|3,1,36,0,1,0,1566050541,"/local" +"- CHAR 0 + bin +|3,0,36,0,1,0,1566052411,"bin" # File marks: 'M 10 15 ~/todo-cli/lib/cmdspec.ex |4,77,10,15,1562265132,"~/todo-cli/lib/cmdspec.ex" -'0 1 20 ~/.bash_aliases -|4,48,1,20,1566050545,"~/.bash_aliases" -'1 1 74 ~/.bash_aliases -|4,49,1,74,1566050515,"~/.bash_aliases" -'2 124 0 ~/.bashrc -|4,50,124,0,1566050444,"~/.bashrc" -'3 124 0 ~/.bashrc -|4,51,124,0,1566050444,"~/.bashrc" -'4 124 0 ~/.bashrc -|4,52,124,0,1566050444,"~/.bashrc" -'5 124 0 ~/.bashrc -|4,53,124,0,1566050444,"~/.bashrc" -'6 1 0 ~/public_html/blog/index.html -|4,54,1,0,1566047834,"~/public_html/blog/index.html" -'7 2 0 ~/public_gopher/gophermap -|4,55,2,0,1566047820,"~/public_gopher/gophermap" -'8 3 12 ~/asuka/.gitignore -|4,56,3,12,1565623723,"~/asuka/.gitignore" -'9 2 0 ~/asuka/build-release -|4,57,2,0,1565623705,"~/asuka/build-release" +'0 1 0 ~/.gitignore +|4,48,1,0,1566052755,"~/.gitignore" +'1 1 0 ~/.gitconfig +|4,49,1,0,1566052561,"~/.gitconfig" +'2 9 7 ~/.gitignore +|4,50,9,7,1566052432,"~/.gitignore" +'3 1 4 ~/.gitignore +|4,51,1,4,1566052418,"~/.gitignore" +'4 1 4 ~/.gitignore +|4,52,1,4,1566052418,"~/.gitignore" +'5 7 4 ~/.gitignore +|4,53,7,4,1566052418,"~/.gitignore" +'6 7 4 ~/.gitignore +|4,54,7,4,1566052418,"~/.gitignore" +'7 1 13 ~/.gitignore +|4,55,1,13,1566052351,"~/.gitignore" +'8 1 13 ~/.gitignore +|4,56,1,13,1566052351,"~/.gitignore" +'9 1 13 ~/.gitignore +|4,57,1,13,1566052351,"~/.gitignore" # Jumplist (newest first): --' 1 20 ~/.bash_aliases -|4,39,1,20,1566050545,"~/.bash_aliases" --' 1 74 ~/.bash_aliases -|4,39,1,74,1566050515,"~/.bash_aliases" --' 123 27 ~/.bashrc -|4,39,123,27,1566050475,"~/.bashrc" --' 123 27 ~/.bashrc -|4,39,123,27,1566050475,"~/.bashrc" --' 1 0 ~/.bashrc -|4,39,1,0,1566050451,"~/.bashrc" --' 1 0 ~/.bashrc -|4,39,1,0,1566050451,"~/.bashrc" --' 124 0 ~/.bashrc -|4,39,124,0,1566050444,"~/.bashrc" --' 124 0 ~/.bashrc -|4,39,124,0,1566050444,"~/.bashrc" --' 124 0 ~/.bashrc -|4,39,124,0,1566050444,"~/.bashrc" --' 1 0 ~/.bashrc -|4,39,1,0,1566050442,"~/.bashrc" --' 121 0 ~/.bashrc -|4,39,121,0,1566050441,"~/.bashrc" --' 121 0 ~/.bashrc -|4,39,121,0,1566050441,"~/.bashrc" --' 121 0 ~/.bashrc -|4,39,121,0,1566050441,"~/.bashrc" --' 1 0 ~/public_html/blog/index.html -|4,39,1,0,1566047834,"~/public_html/blog/index.html" --' 1 0 ~/public_html/blog/index.html -|4,39,1,0,1566047834,"~/public_html/blog/index.html" --' 1 0 ~/public_html/blog/index.html -|4,39,1,0,1566047834,"~/public_html/blog/index.html" --' 1 0 ~/public_html/blog/index.html -|4,39,1,0,1566047834,"~/public_html/blog/index.html" --' 1 0 ~/public_html/blog/index.html -|4,39,1,0,1566047834,"~/public_html/blog/index.html" --' 1 0 ~/public_html/blog/index.html -|4,39,1,0,1566047834,"~/public_html/blog/index.html" --' 1 0 ~/public_html/blog/index.html -|4,39,1,0,1566047834,"~/public_html/blog/index.html" --' 1 0 ~/public_html/blog/index.html -|4,39,1,0,1566047834,"~/public_html/blog/index.html" --' 2 0 ~/public_gopher/gophermap -|4,39,2,0,1566047820,"~/public_gopher/gophermap" --' 2 0 ~/public_gopher/gophermap -|4,39,2,0,1566047820,"~/public_gopher/gophermap" --' 2 0 ~/public_gopher/gophermap -|4,39,2,0,1566047820,"~/public_gopher/gophermap" --' 2 0 ~/public_gopher/gophermap -|4,39,2,0,1566047820,"~/public_gopher/gophermap" --' 2 0 ~/public_gopher/gophermap -|4,39,2,0,1566047820,"~/public_gopher/gophermap" --' 2 0 ~/public_gopher/gophermap -|4,39,2,0,1566047820,"~/public_gopher/gophermap" --' 2 0 ~/public_gopher/gophermap -|4,39,2,0,1566047820,"~/public_gopher/gophermap" --' 2 0 ~/public_gopher/gophermap -|4,39,2,0,1566047820,"~/public_gopher/gophermap" --' 2 0 ~/public_gopher/gophermap -|4,39,2,0,1566047820,"~/public_gopher/gophermap" --' 2 0 ~/public_gopher/gophermap -|4,39,2,0,1566047820,"~/public_gopher/gophermap" --' 2 0 ~/public_gopher/gophermap -|4,39,2,0,1566047820,"~/public_gopher/gophermap" --' 2 0 ~/public_gopher/gophermap -|4,39,2,0,1566047820,"~/public_gopher/gophermap" --' 2 0 ~/public_gopher/gophermap -|4,39,2,0,1566047820,"~/public_gopher/gophermap" --' 2 0 ~/public_gopher/gophermap -|4,39,2,0,1566047820,"~/public_gopher/gophermap" --' 2 0 ~/public_gopher/gophermap -|4,39,2,0,1566047820,"~/public_gopher/gophermap" --' 2 0 ~/public_gopher/gophermap -|4,39,2,0,1566047820,"~/public_gopher/gophermap" --' 1 0 ~/public_gopher/gophermap -|4,39,1,0,1566047810,"~/public_gopher/gophermap" --' 1 0 ~/public_gopher/gophermap -|4,39,1,0,1566047810,"~/public_gopher/gophermap" --' 1 0 ~/public_gopher/gophermap -|4,39,1,0,1566047810,"~/public_gopher/gophermap" --' 1 0 ~/public_gopher/gophermap -|4,39,1,0,1566047810,"~/public_gopher/gophermap" --' 1 0 ~/public_gopher/gophermap -|4,39,1,0,1566047810,"~/public_gopher/gophermap" --' 1 0 ~/public_gopher/gophermap -|4,39,1,0,1566047810,"~/public_gopher/gophermap" --' 1 0 ~/public_gopher/gophermap -|4,39,1,0,1566047810,"~/public_gopher/gophermap" --' 1 0 ~/public_gopher/gophermap -|4,39,1,0,1566047810,"~/public_gopher/gophermap" --' 1 0 ~/public_gopher/gophermap -|4,39,1,0,1566047810,"~/public_gopher/gophermap" --' 1 0 ~/public_gopher/gophermap -|4,39,1,0,1566047810,"~/public_gopher/gophermap" --' 1 0 ~/public_gopher/gophermap -|4,39,1,0,1566047810,"~/public_gopher/gophermap" --' 1 0 ~/public_gopher/gophermap -|4,39,1,0,1566047810,"~/public_gopher/gophermap" --' 1 0 ~/public_gopher/gophermap -|4,39,1,0,1566047810,"~/public_gopher/gophermap" --' 1 0 ~/public_gopher/gophermap -|4,39,1,0,1566047810,"~/public_gopher/gophermap" --' 1 0 ~/public_gopher/gophermap -|4,39,1,0,1566047810,"~/public_gopher/gophermap" --' 1 0 ~/public_gopher/gophermap -|4,39,1,0,1566047810,"~/public_gopher/gophermap" --' 3 12 ~/asuka/.gitignore -|4,39,3,12,1565623723,"~/asuka/.gitignore" --' 3 12 ~/asuka/.gitignore -|4,39,3,12,1565623723,"~/asuka/.gitignore" --' 3 12 ~/asuka/.gitignore -|4,39,3,12,1565623723,"~/asuka/.gitignore" --' 3 12 ~/asuka/.gitignore -|4,39,3,12,1565623723,"~/asuka/.gitignore" --' 3 12 ~/asuka/.gitignore -|4,39,3,12,1565623723,"~/asuka/.gitignore" --' 3 12 ~/asuka/.gitignore -|4,39,3,12,1565623723,"~/asuka/.gitignore" --' 3 12 ~/asuka/.gitignore -|4,39,3,12,1565623723,"~/asuka/.gitignore" --' 3 12 ~/asuka/.gitignore -|4,39,3,12,1565623723,"~/asuka/.gitignore" --' 3 12 ~/asuka/.gitignore -|4,39,3,12,1565623723,"~/asuka/.gitignore" --' 3 12 ~/asuka/.gitignore -|4,39,3,12,1565623723,"~/asuka/.gitignore" --' 3 12 ~/asuka/.gitignore -|4,39,3,12,1565623723,"~/asuka/.gitignore" --' 3 12 ~/asuka/.gitignore -|4,39,3,12,1565623723,"~/asuka/.gitignore" --' 3 12 ~/asuka/.gitignore -|4,39,3,12,1565623723,"~/asuka/.gitignore" --' 3 12 ~/asuka/.gitignore -|4,39,3,12,1565623723,"~/asuka/.gitignore" --' 3 12 ~/asuka/.gitignore -|4,39,3,12,1565623723,"~/asuka/.gitignore" --' 3 12 ~/asuka/.gitignore -|4,39,3,12,1565623723,"~/asuka/.gitignore" --' 3 12 ~/asuka/.gitignore -|4,39,3,12,1565623723,"~/asuka/.gitignore" --' 3 12 ~/asuka/.gitignore -|4,39,3,12,1565623723,"~/asuka/.gitignore" --' 3 12 ~/asuka/.gitignore -|4,39,3,12,1565623723,"~/asuka/.gitignore" --' 3 12 ~/asuka/.gitignore -|4,39,3,12,1565623723,"~/asuka/.gitignore" --' 3 12 ~/asuka/.gitignore -|4,39,3,12,1565623723,"~/asuka/.gitignore" --' 3 12 ~/asuka/.gitignore -|4,39,3,12,1565623723,"~/asuka/.gitignore" --' 3 12 ~/asuka/.gitignore -|4,39,3,12,1565623723,"~/asuka/.gitignore" --' 3 12 ~/asuka/.gitignore -|4,39,3,12,1565623723,"~/asuka/.gitignore" --' 3 12 ~/asuka/.gitignore -|4,39,3,12,1565623723,"~/asuka/.gitignore" --' 3 12 ~/asuka/.gitignore -|4,39,3,12,1565623723,"~/asuka/.gitignore" --' 3 12 ~/asuka/.gitignore -|4,39,3,12,1565623723,"~/asuka/.gitignore" --' 3 12 ~/asuka/.gitignore -|4,39,3,12,1565623723,"~/asuka/.gitignore" --' 3 12 ~/asuka/.gitignore -|4,39,3,12,1565623723,"~/asuka/.gitignore" --' 3 12 ~/asuka/.gitignore -|4,39,3,12,1565623723,"~/asuka/.gitignore" --' 3 12 ~/asuka/.gitignore -|4,39,3,12,1565623723,"~/asuka/.gitignore" --' 3 12 ~/asuka/.gitignore -|4,39,3,12,1565623723,"~/asuka/.gitignore" --' 1 0 ~/asuka/.gitignore -|4,39,1,0,1565623717,"~/asuka/.gitignore" --' 1 0 ~/asuka/.gitignore -|4,39,1,0,1565623717,"~/asuka/.gitignore" --' 1 0 ~/asuka/.gitignore -|4,39,1,0,1565623717,"~/asuka/.gitignore" --' 1 0 ~/asuka/.gitignore -|4,39,1,0,1565623717,"~/asuka/.gitignore" --' 1 0 ~/asuka/.gitignore -|4,39,1,0,1565623717,"~/asuka/.gitignore" --' 1 0 ~/asuka/.gitignore -|4,39,1,0,1565623717,"~/asuka/.gitignore" --' 1 0 ~/asuka/.gitignore -|4,39,1,0,1565623717,"~/asuka/.gitignore" --' 1 0 ~/asuka/.gitignore -|4,39,1,0,1565623717,"~/asuka/.gitignore" --' 1 0 ~/asuka/.gitignore -|4,39,1,0,1565623717,"~/asuka/.gitignore" --' 1 0 ~/asuka/.gitignore -|4,39,1,0,1565623717,"~/asuka/.gitignore" --' 1 0 ~/asuka/.gitignore -|4,39,1,0,1565623717,"~/asuka/.gitignore" --' 1 0 ~/asuka/.gitignore -|4,39,1,0,1565623717,"~/asuka/.gitignore" --' 1 0 ~/asuka/.gitignore -|4,39,1,0,1565623717,"~/asuka/.gitignore" --' 1 0 ~/asuka/.gitignore -|4,39,1,0,1565623717,"~/asuka/.gitignore" +-' 1 0 ~/.gitignore +|4,39,1,0,1566052755,"~/.gitignore" +-' 1 0 ~/.gitconfig +|4,39,1,0,1566052561,"~/.gitconfig" +-' 1 0 ~/.gitconfig +|4,39,1,0,1566052561,"~/.gitconfig" +-' 9 7 ~/.gitignore +|4,39,9,7,1566052432,"~/.gitignore" +-' 9 7 ~/.gitignore +|4,39,9,7,1566052432,"~/.gitignore" +-' 1 0 ~/.gitignore +|4,39,1,0,1566052425,"~/.gitignore" +-' 1 0 ~/.gitignore +|4,39,1,0,1566052425,"~/.gitignore" +-' 7 4 ~/.gitignore +|4,39,7,4,1566052418,"~/.gitignore" +-' 7 4 ~/.gitignore +|4,39,7,4,1566052418,"~/.gitignore" +-' 7 4 ~/.gitignore +|4,39,7,4,1566052418,"~/.gitignore" +-' 7 4 ~/.gitignore +|4,39,7,4,1566052418,"~/.gitignore" +-' 1 0 ~/.gitignore +|4,39,1,0,1566052406,"~/.gitignore" +-' 1 0 ~/.gitignore +|4,39,1,0,1566052406,"~/.gitignore" +-' 4 13 ~/.gitignore +|4,39,4,13,1566052351,"~/.gitignore" +-' 4 13 ~/.gitignore +|4,39,4,13,1566052351,"~/.gitignore" +-' 4 13 ~/.gitignore +|4,39,4,13,1566052351,"~/.gitignore" +-' 4 13 ~/.gitignore +|4,39,4,13,1566052351,"~/.gitignore" +-' 4 13 ~/.gitignore +|4,39,4,13,1566052351,"~/.gitignore" +-' 4 13 ~/.gitignore +|4,39,4,13,1566052351,"~/.gitignore" +-' 1 0 ~/.gitignore +|4,39,1,0,1566052334,"~/.gitignore" +-' 1 0 ~/.gitignore +|4,39,1,0,1566052334,"~/.gitignore" +-' 3 9 ~/.gitignore +|4,39,3,9,1566052266,"~/.gitignore" +-' 3 9 ~/.gitignore +|4,39,3,9,1566052266,"~/.gitignore" +-' 3 9 ~/.gitignore +|4,39,3,9,1566052266,"~/.gitignore" +-' 3 9 ~/.gitignore +|4,39,3,9,1566052266,"~/.gitignore" +-' 3 9 ~/.gitignore +|4,39,3,9,1566052266,"~/.gitignore" +-' 3 9 ~/.gitignore +|4,39,3,9,1566052266,"~/.gitignore" +-' 3 9 ~/.gitignore +|4,39,3,9,1566052266,"~/.gitignore" +-' 3 9 ~/.gitignore +|4,39,3,9,1566052266,"~/.gitignore" +-' 1 0 ~/.gitignore +|4,39,1,0,1566052262,"~/.gitignore" +-' 1 0 ~/.gitignore +|4,39,1,0,1566052262,"~/.gitignore" +-' 2 4 ~/.gitignore +|4,39,2,4,1566052245,"~/.gitignore" +-' 2 4 ~/.gitignore +|4,39,2,4,1566052245,"~/.gitignore" +-' 2 4 ~/.gitignore +|4,39,2,4,1566052245,"~/.gitignore" +-' 2 4 ~/.gitignore +|4,39,2,4,1566052245,"~/.gitignore" +-' 2 4 ~/.gitignore +|4,39,2,4,1566052245,"~/.gitignore" +-' 2 4 ~/.gitignore +|4,39,2,4,1566052245,"~/.gitignore" +-' 2 4 ~/.gitignore +|4,39,2,4,1566052245,"~/.gitignore" +-' 2 4 ~/.gitignore +|4,39,2,4,1566052245,"~/.gitignore" +-' 2 4 ~/.gitignore +|4,39,2,4,1566052245,"~/.gitignore" +-' 2 4 ~/.gitignore +|4,39,2,4,1566052245,"~/.gitignore" +-' 1 0 ~/.gitignore +|4,39,1,0,1566052237,"~/.gitignore" +-' 1 0 ~/.gitignore +|4,39,1,0,1566052237,"~/.gitignore" +-' 1 4 ~/.gitignore +|4,39,1,4,1566052194,"~/.gitignore" +-' 1 4 ~/.gitignore +|4,39,1,4,1566052194,"~/.gitignore" +-' 1 3 ~/.gitignore +|4,39,1,3,1566052182,"~/.gitignore" +-' 1 3 ~/.gitignore +|4,39,1,3,1566052182,"~/.gitignore" +-' 1 0 ~/.ssh/id_rsa.pub +|4,39,1,0,1566051784,"~/.ssh/id_rsa.pub" +-' 1 0 ~/.ssh/id_rsa.pub +|4,39,1,0,1566051784,"~/.ssh/id_rsa.pub" +-' 1 0 ~/.ssh/id_rsa.pub +|4,39,1,0,1566051784,"~/.ssh/id_rsa.pub" +-' 1 0 ~/.ssh/id_rsa.pub +|4,39,1,0,1566051784,"~/.ssh/id_rsa.pub" +-' 1 0 ~/.ssh/id_rsa.pub +|4,39,1,0,1566051784,"~/.ssh/id_rsa.pub" +-' 1 0 ~/.ssh/id_rsa.pub +|4,39,1,0,1566051784,"~/.ssh/id_rsa.pub" +-' 1 0 ~/.ssh/id_rsa.pub +|4,39,1,0,1566051784,"~/.ssh/id_rsa.pub" +-' 1 0 ~/.ssh/id_rsa.pub +|4,39,1,0,1566051784,"~/.ssh/id_rsa.pub" +-' 1 0 ~/.ssh/id_rsa.pub +|4,39,1,0,1566051784,"~/.ssh/id_rsa.pub" +-' 1 0 ~/.ssh/id_rsa.pub +|4,39,1,0,1566051784,"~/.ssh/id_rsa.pub" +-' 1 0 ~/.ssh/id_rsa.pub +|4,39,1,0,1566051784,"~/.ssh/id_rsa.pub" +-' 1 0 ~/.ssh/id_rsa.pub +|4,39,1,0,1566051784,"~/.ssh/id_rsa.pub" +-' 1 0 ~/.ssh/id_rsa.pub +|4,39,1,0,1566051784,"~/.ssh/id_rsa.pub" +-' 1 0 ~/.ssh/id_rsa.pub +|4,39,1,0,1566051784,"~/.ssh/id_rsa.pub" +-' 1 0 ~/.ssh/id_rsa.pub +|4,39,1,0,1566051784,"~/.ssh/id_rsa.pub" +-' 1 0 ~/.ssh/id_rsa.pub +|4,39,1,0,1566051784,"~/.ssh/id_rsa.pub" +-' 1 0 ~/.ssh/id_rsa.pub +|4,39,1,0,1566051784,"~/.ssh/id_rsa.pub" +-' 1 0 ~/.ssh/id_rsa.pub +|4,39,1,0,1566051784,"~/.ssh/id_rsa.pub" +-' 1 0 ~/.ssh/id_rsa.pub +|4,39,1,0,1566051784,"~/.ssh/id_rsa.pub" +-' 1 0 ~/.ssh/id_rsa.pub +|4,39,1,0,1566051784,"~/.ssh/id_rsa.pub" +-' 1 0 ~/.ssh/id_rsa.pub +|4,39,1,0,1566051784,"~/.ssh/id_rsa.pub" +-' 1 0 ~/.ssh/id_rsa.pub +|4,39,1,0,1566051784,"~/.ssh/id_rsa.pub" +-' 1 0 ~/.ssh/id_rsa.pub +|4,39,1,0,1566051784,"~/.ssh/id_rsa.pub" +-' 1 0 ~/.ssh/id_rsa.pub +|4,39,1,0,1566051784,"~/.ssh/id_rsa.pub" +-' 1 0 ~/.ssh/id_rsa.pub +|4,39,1,0,1566051784,"~/.ssh/id_rsa.pub" +-' 1 0 ~/.ssh/id_rsa.pub +|4,39,1,0,1566051784,"~/.ssh/id_rsa.pub" +-' 1 0 ~/.ssh/id_rsa.pub +|4,39,1,0,1566051784,"~/.ssh/id_rsa.pub" +-' 1 0 ~/.ssh/id_rsa.pub +|4,39,1,0,1566051784,"~/.ssh/id_rsa.pub" +-' 1 0 ~/.ssh/id_rsa.pub +|4,39,1,0,1566051784,"~/.ssh/id_rsa.pub" +-' 1 0 ~/.ssh/id_rsa.pub +|4,39,1,0,1566051784,"~/.ssh/id_rsa.pub" +-' 1 0 ~/.ssh/id_rsa.pub +|4,39,1,0,1566051784,"~/.ssh/id_rsa.pub" +-' 1 0 ~/.ssh/id_rsa.pub +|4,39,1,0,1566051784,"~/.ssh/id_rsa.pub" +-' 1 0 ~/.ssh/id_rsa.pub +|4,39,1,0,1566051784,"~/.ssh/id_rsa.pub" +-' 1 0 ~/.ssh/id_rsa.pub +|4,39,1,0,1566051784,"~/.ssh/id_rsa.pub" +-' 1 0 ~/.ssh/id_rsa.pub +|4,39,1,0,1566051784,"~/.ssh/id_rsa.pub" +-' 1 0 ~/.ssh/id_rsa.pub +|4,39,1,0,1566051784,"~/.ssh/id_rsa.pub" +-' 1 0 ~/.ssh/id_rsa.pub +|4,39,1,0,1566051784,"~/.ssh/id_rsa.pub" +-' 1 0 ~/.ssh/id_rsa.pub +|4,39,1,0,1566051784,"~/.ssh/id_rsa.pub" +-' 1 0 ~/.ssh/id_rsa.pub +|4,39,1,0,1566051784,"~/.ssh/id_rsa.pub" +-' 1 0 ~/.ssh/id_rsa.pub +|4,39,1,0,1566051784,"~/.ssh/id_rsa.pub" +-' 1 0 ~/.ssh/id_rsa.pub +|4,39,1,0,1566051784,"~/.ssh/id_rsa.pub" +-' 1 0 ~/.ssh/id_rsa.pub +|4,39,1,0,1566051784,"~/.ssh/id_rsa.pub" +-' 1 0 ~/.ssh/id_rsa.pub +|4,39,1,0,1566051784,"~/.ssh/id_rsa.pub" +-' 1 0 ~/.ssh/id_rsa.pub +|4,39,1,0,1566051784,"~/.ssh/id_rsa.pub" +-' 1 0 ~/.ssh/id_rsa.pub +|4,39,1,0,1566051784,"~/.ssh/id_rsa.pub" +-' 1 0 ~/.ssh/id_rsa.pub +|4,39,1,0,1566051784,"~/.ssh/id_rsa.pub" +-' 1 0 ~/.ssh/id_rsa.pub +|4,39,1,0,1566051784,"~/.ssh/id_rsa.pub" +-' 1 0 ~/.ssh/id_rsa.pub +|4,39,1,0,1566051784,"~/.ssh/id_rsa.pub" +-' 1 0 ~/.ssh/id_rsa.pub +|4,39,1,0,1566051784,"~/.ssh/id_rsa.pub" +-' 1 0 ~/.ssh/id_rsa.pub +|4,39,1,0,1566051784,"~/.ssh/id_rsa.pub" +-' 1 0 ~/.ssh/id_rsa.pub +|4,39,1,0,1566051784,"~/.ssh/id_rsa.pub" +-' 1 0 ~/.ssh/id_rsa.pub +|4,39,1,0,1566051784,"~/.ssh/id_rsa.pub" +-' 1 0 ~/.ssh/id_rsa.pub +|4,39,1,0,1566051784,"~/.ssh/id_rsa.pub" # History of marks within files (newest to oldest): -> ~/.bash_aliases - * 1566050543 0 - " 1 20 - ^ 1 80 - . 1 20 - + 1 20 +> ~/.gitignore + * 1566052754 0 + " 1 0 + . 1 0 + + 1 4 + + 1 9 + + 1 13 + + 1 3 + + 1 4 + + 1 3 + + 1 0 + +> ~/.gitconfig + * 1566052557 0 + " 1 0 + +> ~/.ssh/id_rsa.pub + * 1566051783 0 + " 1 0 + ^ 1 0 + +> ~/.ssh/authorized_keys + * 1566051667 0 + " 1 0 + ^ 3 380 + . 3 301 + + 2 375 + + 3 301 > ~/.bashrc - * 1566050468 0 - " 123 27 + * 1566050739 0 + " 124 0 ^ 124 28 . 124 27 + 125 0 @@ -711,6 +748,17 @@ $: + 126 20 + 124 27 +> ~/.vimtags + * 1566050710 0 + " 1 0 + +> ~/.bash_aliases + * 1566050543 0 + " 1 20 + ^ 1 80 + . 1 20 + + 1 20 + > ~/public_html/blog/index.html * 1566047828 0 " 1 0 @@ -819,14 +867,6 @@ $: * 1565443098 0 " 1 0 -> ~/.ssh/authorized_keys - * 1565442811 0 - " 3 379 - ^ 3 380 - . 3 301 - + 2 375 - + 3 301 - > ~/public_html/blog/.config * 1565026390 0 " 1 0 @@ -3275,19 +3315,3 @@ $: > ~/fawkes/bin/output2/84.json * 1562341262 0 " 1 0 - -> ~/fawkes/bin/output2/82.json - * 1562341257 0 - " 1 0 - -> ~/fawkes/bin/output2/79.json - * 1562341060 0 - " 1 0 - -> ~/fawkes/bin/output2/78.json - * 1562341056 0 - " 1 0 - -> ~/fawkes/bin/parse_posts.js - * 1562340985 0 - " 28 50 diff --git a/.weechat/alias.conf b/.weechat/alias.conf new file mode 100644 index 0000000..b94f415 --- /dev/null +++ b/.weechat/alias.conf @@ -0,0 +1,57 @@ +# +# weechat -- alias.conf +# +# WARNING: It is NOT recommended to edit this file by hand, +# especially if WeeChat is running. +# +# Use /set or similar command to change settings in WeeChat. +# +# For more info, see: https://weechat.org/doc/quickstart +# + +[cmd] +AAWAY = "allserv /away" +AME = "allchan /me" +AMSG = "allchan /msg *" +ANICK = "allserv /nick" +BEEP = "print -beep" +BS = "quote botserv" +BYE = "quit" +C = "buffer clear" +CHAT = "dcc chat" +CL = "buffer clear" +CLOSE = "buffer close" +CS = "quote chanserv" +EXIT = "quit" +HS = "quote hostserv" +IG = "ignore" +J = "join" +K = "kick" +KB = "kickban" +LEAVE = "part" +M = "msg" +MS = "quote memoserv" +MSGBUF = "command -buffer $1 * /input send $2-" +MUB = "unban *" +N = "names" +NS = "quote nickserv" +OS = "quote operserv" +Q = "query" +REDRAW = "window refresh" +save_settings = "/autojoin --run;/layout store;/save" +SAY = "msg *" +setup_aspell = "/set weechat.bar.rootinput.items [input_prompt]+(away),[input_search],[input_paste],input_text,aspell_suggest;/set aspell.check.default_dict en_US;/set aspell.check.suggestions 4;/set aspell.check.enabled on;/unalias setup_aspell;/save" +SIGNOFF = "quit" +SLAP = "me slaps $1 around a bit with a large trout" +T = "topic" +UB = "unban" +UMODE = "mode $nick" +V = "command core version" +W = "who" +WC = "window merge" +WI = "whois" +WII = "whois $1 $1" +WW = "whowas" + +[completion] +MSGBUF = "%(buffers_plugins_names)" diff --git a/.weechat/aspell.conf b/.weechat/aspell.conf new file mode 100644 index 0000000..aa0bd00 --- /dev/null +++ b/.weechat/aspell.conf @@ -0,0 +1,20 @@ +# +# aspell.conf -- weechat v1.0.1 +# + +[color] +misspelled = lightred +suggestions = default + +[check] +commands = "ame,amsg,away,command,cycle,kick,kickban,me,msg,notice,part,query,quit,topic" +default_dict = "" +during_search = off +enabled = off +real_time = off +suggestions = -1 +word_min_length = 2 + +[dict] + +[option] diff --git a/.weechat/buflist.conf b/.weechat/buflist.conf new file mode 100644 index 0000000..6c30f88 --- /dev/null +++ b/.weechat/buflist.conf @@ -0,0 +1,39 @@ +# +# weechat -- buflist.conf +# +# WARNING: It is NOT recommended to edit this file by hand, +# especially if WeeChat is running. +# +# Use /set or similar command to change settings in WeeChat. +# +# For more info, see: https://weechat.org/doc/quickstart +# + +[look] +add_newline = on +auto_scroll = 50 +display_conditions = "${buffer.hidden}==0" +enabled = on +mouse_jump_visited_buffer = off +mouse_move_buffer = on +mouse_wheel = on +nick_prefix = off +nick_prefix_empty = on +signals_refresh = "" +sort = "number,-active" + +[format] +buffer = "${format_number}${indent}${format_nick_prefix}${color_hotlist}${name}" +buffer_current = "${color:,233}${format_number}${indent}${format_nick_prefix}${color:lightcyan}${name}" +hotlist = " ${color:green}(${hotlist}${color:green})" +hotlist_highlight = "${color:magenta}" +hotlist_low = "${color:default}" +hotlist_message = "${color:130}" +hotlist_none = "${color:white}" +hotlist_private = "${color:cyan}" +hotlist_separator = "${color:default}," +indent = " " +lag = " ${color:green}[${color:brown}${lag}${color:green}]" +name = "${name}" +nick_prefix = "${color_nick_prefix}${nick_prefix}" +number = "${color:green}${number}${if:${number_displayed}?.: }" diff --git a/.weechat/charset.conf b/.weechat/charset.conf new file mode 100644 index 0000000..00d304c --- /dev/null +++ b/.weechat/charset.conf @@ -0,0 +1,18 @@ +# +# weechat -- charset.conf +# +# WARNING: It is NOT recommended to edit this file by hand, +# especially if WeeChat is running. +# +# Use /set or similar command to change settings in WeeChat. +# +# For more info, see: https://weechat.org/doc/quickstart +# + +[default] +decode = "iso-8859-1" +encode = "" + +[decode] + +[encode] diff --git a/.weechat/exec.conf b/.weechat/exec.conf new file mode 100644 index 0000000..db02a5b --- /dev/null +++ b/.weechat/exec.conf @@ -0,0 +1,19 @@ +# +# weechat -- exec.conf +# +# WARNING: It is NOT recommended to edit this file by hand, +# especially if WeeChat is running. +# +# Use /set or similar command to change settings in WeeChat. +# +# For more info, see: https://weechat.org/doc/quickstart +# + +[command] +default_options = "" +purge_delay = 0 +shell = "sh" + +[color] +flag_finished = lightred +flag_running = lightgreen diff --git a/.weechat/fifo.conf b/.weechat/fifo.conf new file mode 100644 index 0000000..904985d --- /dev/null +++ b/.weechat/fifo.conf @@ -0,0 +1,14 @@ +# +# weechat -- fifo.conf +# +# WARNING: It is NOT recommended to edit this file by hand, +# especially if WeeChat is running. +# +# Use /set or similar command to change settings in WeeChat. +# +# For more info, see: https://weechat.org/doc/quickstart +# + +[file] +enabled = on +path = "%h/weechat_fifo" diff --git a/.weechat/fset.conf b/.weechat/fset.conf new file mode 100644 index 0000000..668266c --- /dev/null +++ b/.weechat/fset.conf @@ -0,0 +1,95 @@ +# +# weechat -- fset.conf +# +# WARNING: It is NOT recommended to edit this file by hand, +# especially if WeeChat is running. +# +# Use /set or similar command to change settings in WeeChat. +# +# For more info, see: https://weechat.org/doc/quickstart +# + +[look] +auto_unmark = off +condition_catch_set = "${count} >= 1" +export_help_default = on +format_number = 1 +marked_string = "*" +scroll_horizontal = 10 +show_plugins_desc = off +sort = "~name" +unmarked_string = " " +use_color_value = off +use_keys = on +use_mute = off + +[format] +export_help = "# ${description2}" +export_option = "/set ${name} ${quoted_value}" +export_option_null = "/unset ${name}" +option1 = "" +option2 = "${marked} ${name} ${type} ${value2}${newline} ${empty_name} ${_default_value}${color:darkgray} -- ${min}..${max}${newline} ${empty_name} ${description}" + +[color] +default_value = default +default_value_selected = white +description = default +description_selected = white +file = default +file_changed = brown +file_changed_selected = yellow +file_selected = white +help_default_value = white +help_description = default +help_name = white +help_quotes = darkgray +help_values = default +index = cyan +index_selected = lightcyan +line_marked_bg1 = default +line_marked_bg2 = default +line_selected_bg1 = blue +line_selected_bg2 = red +marked = brown +marked_selected = yellow +max = default +max_selected = white +min = default +min_selected = white +name = default +name_changed = brown +name_changed_selected = yellow +name_selected = white +option = default +option_changed = brown +option_changed_selected = yellow +option_selected = white +parent_name = default +parent_name_selected = white +parent_value = cyan +parent_value_selected = lightcyan +quotes = darkgray +quotes_changed = default +quotes_changed_selected = white +quotes_selected = default +section = default +section_changed = brown +section_changed_selected = yellow +section_selected = white +string_values = default +string_values_selected = white +title_count_options = cyan +title_current_option = lightcyan +title_filter = yellow +title_marked_options = lightgreen +title_sort = white +type = green +type_selected = lightgreen +unmarked = default +unmarked_selected = white +value = cyan +value_changed = brown +value_changed_selected = yellow +value_selected = lightcyan +value_undef = magenta +value_undef_selected = lightmagenta diff --git a/.weechat/irc.conf b/.weechat/irc.conf new file mode 100644 index 0000000..1f35110 --- /dev/null +++ b/.weechat/irc.conf @@ -0,0 +1,195 @@ +# +# weechat -- irc.conf +# +# WARNING: It is NOT recommended to edit this file by hand, +# especially if WeeChat is running. +# +# Use /set or similar command to change settings in WeeChat. +# +# For more info, see: https://weechat.org/doc/quickstart +# + +[look] +buffer_open_before_autojoin = on +buffer_open_before_join = off +buffer_switch_autojoin = on +buffer_switch_join = on +color_nicks_in_names = off +color_nicks_in_nicklist = on +color_nicks_in_server_messages = on +color_pv_nick_like_channel = on +ctcp_time_format = "%a, %d %b %Y %T %z" +display_away = local +display_ctcp_blocked = on +display_ctcp_reply = on +display_ctcp_unknown = on +display_host_join = on +display_host_join_local = on +display_host_quit = on +display_join_message = "329,332,333,366" +display_old_topic = on +display_pv_away_once = on +display_pv_back = on +highlight_channel = "$nick" +highlight_pv = "$nick" +highlight_server = "$nick" +highlight_tags_restrict = "irc_privmsg,irc_notice" +item_channel_modes_hide_args = "k" +item_display_server = buffer_plugin +item_nick_modes = on +item_nick_prefix = on +join_auto_add_chantype = off +msgbuffer_fallback = current +new_channel_position = none +new_pv_position = none +nick_completion_smart = speakers +nick_mode = prefix +nick_mode_empty = off +nicks_hide_password = "nickserv" +notice_as_pv = auto +notice_welcome_redirect = on +notice_welcome_tags = "" +notify_tags_ison = "notify_message" +notify_tags_whois = "notify_message" +part_closes_buffer = off +pv_buffer = independent +pv_tags = "notify_private" +raw_messages = 256 +server_buffer = merge_with_core +smart_filter = on +smart_filter_chghost = on +smart_filter_delay = 5 +smart_filter_join = on +smart_filter_join_unmask = 30 +smart_filter_mode = "+" +smart_filter_nick = on +smart_filter_quit = on +temporary_servers = off +topic_strip_colors = off + +[color] +input_nick = lightcyan +item_channel_modes = lightcyan +item_lag_counting = default +item_lag_finished = 130 +item_nick_modes = lightgreen +message_chghost = brown +message_join = green +message_quit = red +mirc_remap = "1,-1:darkgray" +nick_prefixes = "q:lightred;a:lightcyan;o:lightgreen;h:lightmagenta;v:yellow;*:lightblue" +notice = green +reason_quit = default +topic_current = default +topic_new = white +topic_old = default + +[network] +autoreconnect_delay_growing = 2 +autoreconnect_delay_max = 600 +ban_mask_default = "*!$ident@$host" +channel_encode = off +colors_receive = on +colors_send = on +lag_check = 60 +lag_max = 1800 +lag_min_show = 500 +lag_reconnect = 0 +lag_refresh_interval = 1 +notify_check_ison = 1 +notify_check_whois = 5 +sasl_fail_unavailable = on +send_unknown_commands = off +whois_double_nick = off + +[msgbuffer] + +[ctcp] + +[ignore] + +[server_default] +addresses = "" +anti_flood_prio_high = 2 +anti_flood_prio_low = 2 +autoconnect = off +autojoin = "" +autoreconnect = on +autoreconnect_delay = 10 +autorejoin = off +autorejoin_delay = 30 +away_check = 0 +away_check_max_nicks = 25 +capabilities = "account-notify,away-notify,cap-notify,chghost,extended-join,invite-notify,multi-prefix,server-time,userhost-in-names" +command = "" +command_delay = 0 +connection_timeout = 60 +ipv6 = on +local_hostname = "" +msg_kick = "" +msg_part = "WeeChat ${info:version}" +msg_quit = "WeeChat ${info:version}" +nicks = "zack,zack1,zack2,zack3,zack4" +nicks_alternate = on +notify = "" +password = "" +proxy = "" +realname = "" +sasl_fail = continue +sasl_key = "" +sasl_mechanism = plain +sasl_password = "" +sasl_timeout = 15 +sasl_username = "" +split_msg_max_length = 512 +ssl = off +ssl_cert = "" +ssl_dhkey_size = 2048 +ssl_fingerprint = "" +ssl_priorities = "NORMAL" +ssl_verify = on +usermode = "" +username = "${env:USER}" + +[server] +tilde.addresses = "localhost" +tilde.proxy +tilde.ipv6 +tilde.ssl +tilde.ssl_cert +tilde.ssl_priorities +tilde.ssl_dhkey_size +tilde.ssl_fingerprint +tilde.ssl_verify +tilde.password +tilde.capabilities +tilde.sasl_mechanism +tilde.sasl_username +tilde.sasl_password +tilde.sasl_key +tilde.sasl_timeout +tilde.sasl_fail +tilde.autoconnect = on +tilde.autoreconnect +tilde.autoreconnect_delay +tilde.nicks +tilde.nicks_alternate +tilde.username +tilde.realname +tilde.local_hostname +tilde.usermode +tilde.command +tilde.command_delay +tilde.autojoin = "#meta,#team" +tilde.autorejoin +tilde.autorejoin_delay +tilde.connection_timeout +tilde.anti_flood_prio_high +tilde.anti_flood_prio_low +tilde.away_check +tilde.away_check_max_nicks +tilde.msg_kick +tilde.msg_part +tilde.msg_quit +tilde.notify +tilde.split_msg_max_length diff --git a/.weechat/iset.conf b/.weechat/iset.conf new file mode 100644 index 0000000..e8d0cbf --- /dev/null +++ b/.weechat/iset.conf @@ -0,0 +1,37 @@ +# +# weechat -- iset.conf +# +# WARNING: It is NOT recommended to edit this file by hand, +# especially if WeeChat is running. +# +# Use /set or similar command to change settings in WeeChat. +# +# For more info, see: https://weechat.org/doc/quickstart +# + +[color] +bg_selected = 235 +help_default_value = green +help_option_name = white +help_text = lightcyan +option = default +option_selected = white +type = brown +type_selected = 130 +value = cyan +value_diff = magenta +value_diff_selected = lightmagenta +value_selected = lightcyan +value_undef = green +value_undef_selected = lightgreen + +[help] +show_help_bar = on +show_help_extra_info = on +show_plugin_description = off + +[look] +scroll_horiz = 10 +show_current_line = on +use_mute = off +value_search_char = "=" diff --git a/.weechat/logger.conf b/.weechat/logger.conf new file mode 100644 index 0000000..b7b5efc --- /dev/null +++ b/.weechat/logger.conf @@ -0,0 +1,35 @@ +# +# weechat -- logger.conf +# +# WARNING: It is NOT recommended to edit this file by hand, +# especially if WeeChat is running. +# +# Use /set or similar command to change settings in WeeChat. +# +# For more info, see: https://weechat.org/doc/quickstart +# + +[look] +backlog = 20 +backlog_conditions = "" + +[color] +backlog_end = default +backlog_line = default + +[file] +auto_log = on +flush_delay = 120 +fsync = off +info_lines = off +mask = "$plugin.$name.weechatlog" +name_lower_case = on +nick_prefix = "" +nick_suffix = "" +path = "%h/logs/" +replacement_char = "_" +time_format = "%Y-%m-%d %H:%M:%S" + +[level] + +[mask] diff --git a/.weechat/logs/core.weechat.weechatlog b/.weechat/logs/core.weechat.weechatlog new file mode 100644 index 0000000..b66233c --- /dev/null +++ b/.weechat/logs/core.weechat.weechatlog @@ -0,0 +1,589 @@ +2019-08-02 13:59:10 =!= spell: warning: the plugin "aspell" has been renamed to "spell" and the file /home/zack/.weechat/aspell.conf still exists (but not /home/zack/.weechat/spell.conf); if you upgraded from an older version, you should check instructions in release notes (version 2.5) to recover your settings +2019-08-02 13:59:10 New key binding (context "default"): meta2-1;5P => /bar scroll buflist * -100% +2019-08-02 13:59:10 New key binding (context "default"): meta2-1;5Q => /bar scroll buflist * +100% +2019-08-02 13:59:10 New key binding (context "default"): meta-meta-OQ => /bar scroll buflist * e +2019-08-02 13:59:10 New key binding (context "default"): meta2-1;3Q => /bar scroll buflist * e +2019-08-02 13:59:10 New key binding (context "default"): meta2-1;3P => /bar scroll buflist * b +2019-08-02 13:59:10 New key binding (context "default"): meta-meta-OP => /bar scroll buflist * b +2019-08-02 13:59:10 New key binding (context "default"): meta-OQ => /bar scroll buflist * +100% +2019-08-02 13:59:10 New key binding (context "default"): meta-OP => /bar scroll buflist * -100% +2019-08-02 13:59:10 New key binding (context "default"): meta-meta2-12~ => /bar scroll buflist * e +2019-08-02 13:59:10 New key binding (context "default"): meta-meta2-11~ => /bar scroll buflist * b +2019-08-02 13:59:10 New key binding (context "default"): meta2-12^ => /bar scroll buflist * +100% +2019-08-02 13:59:10 New key binding (context "default"): meta2-12~ => /bar scroll buflist * +100% +2019-08-02 13:59:10 New key binding (context "default"): meta2-11^ => /bar scroll buflist * -100% +2019-08-02 13:59:10 New key binding (context "default"): meta2-11~ => /bar scroll buflist * -100% +2019-08-02 13:59:10 =!= Warning: /home/zack/.weechat/xfer.conf, line 26: unknown option for section "network": speed_limit = 0 +2019-08-02 13:59:10 =!= Warning: /home/zack/.weechat/irc.conf, line 28: unknown option for section "look": item_away_message = on +2019-08-02 13:59:10 =!= Warning: /home/zack/.weechat/irc.conf, line 37: unknown option for section "look": nick_color_force = "" +2019-08-02 13:59:10 =!= Warning: /home/zack/.weechat/irc.conf, line 38: unknown option for section "look": nick_color_hash = sum +2019-08-02 13:59:10 =!= Warning: /home/zack/.weechat/irc.conf, line 39: unknown option for section "look": nick_color_stop_chars = "_|[" +2019-08-02 13:59:10 =!= Warning: /home/zack/.weechat/irc.conf, line 65: unknown option for section "color": item_away = 130 +2019-08-02 13:59:10 =!= Warning: /home/zack/.weechat/irc.conf, line 117: unknown option for section "server_default": default_msg_kick = "" +2019-08-02 13:59:10 =!= Warning: /home/zack/.weechat/irc.conf, line 118: unknown option for section "server_default": default_msg_part = "WeeChat %v" +2019-08-02 13:59:10 =!= Warning: /home/zack/.weechat/irc.conf, line 119: unknown option for section "server_default": default_msg_quit = "WeeChat %v" +2019-08-02 13:59:10 =!= irc: error creating server option "tilde.default_msg_kick" +2019-08-02 13:59:10 =!= Warning: /home/zack/.weechat/irc.conf, line 171: invalid value for option: tilde.default_msg_kick +2019-08-02 13:59:10 =!= irc: error creating server option "tilde.default_msg_part" +2019-08-02 13:59:10 =!= Warning: /home/zack/.weechat/irc.conf, line 172: invalid value for option: tilde.default_msg_part +2019-08-02 13:59:10 =!= irc: error creating server option "tilde.default_msg_quit" +2019-08-02 13:59:10 =!= Warning: /home/zack/.weechat/irc.conf, line 173: invalid value for option: tilde.default_msg_quit +2019-08-02 13:59:10 perl scripts loaded: highmon, iset +2019-08-02 13:59:10 python: stdout/stderr (?): Traceback (most recent call last): +2019-08-02 13:59:10 python: stdout/stderr (?): File "/home/zack/.weechat/python/autoload/otr.py", line 127, in +2019-08-02 13:59:10 python: stdout/stderr (?): import potr +2019-08-02 13:59:10 python: stdout/stderr (?): ImportError: No module named potr +2019-08-02 13:59:10 =!= python: unable to parse file "/home/zack/.weechat/python/autoload/otr.py" +2019-08-02 13:59:10 =!= python: function "register" not found (or failed) in file "/home/zack/.weechat/python/autoload/urlview.py" +2019-08-02 13:59:10 python scripts loaded: apply_corrections, autojoin, grep +2019-08-02 13:59:10 =!= Warning: /home/zack/.weechat/script.conf, line 50: unknown option for section "scripts": url_force_https = on +2019-08-02 13:59:10 script: downloading list of scripts... +2019-08-02 13:59:10 Plugins loaded: alias, buflist, charset, exec, fifo, fset, irc, logger, perl, python, relay, ruby, script, spell, trigger, xfer +2019-08-02 13:59:12 script: 363 scripts for WeeChat 2.5 +2019-08-02 15:03:35 python: scripts unloaded +2019-08-02 15:03:35 fifo: pipe closed +2019-08-02 15:24:41 perl scripts loaded: highmon, iset +2019-08-02 15:24:41 python: stdout/stderr (?): Traceback (most recent call last): +2019-08-02 15:24:41 python: stdout/stderr (?): File "/home/zack/.weechat/python/autoload/otr.py", line 127, in +2019-08-02 15:24:41 python: stdout/stderr (?): import potr +2019-08-02 15:24:41 python: stdout/stderr (?): ImportError: No module named potr +2019-08-02 15:24:41 =!= python: unable to parse file "/home/zack/.weechat/python/autoload/otr.py" +2019-08-02 15:24:41 =!= python: function "register" not found (or failed) in file "/home/zack/.weechat/python/autoload/urlview.py" +2019-08-02 15:24:41 python scripts loaded: apply_corrections, autojoin, grep +2019-08-02 15:24:41 script: 363 scripts for WeeChat 2.5 +2019-08-02 15:24:41 Plugins loaded: alias, buflist, charset, exec, fifo, fset, irc, logger, perl, python, relay, ruby, script, spell, trigger, xfer +2019-08-02 16:17:42 python: scripts unloaded +2019-08-02 16:17:42 fifo: pipe closed +2019-08-03 08:39:24 perl scripts loaded: highmon, iset +2019-08-03 08:39:24 python: stdout/stderr (?): Traceback (most recent call last): +2019-08-03 08:39:24 python: stdout/stderr (?): File "/home/zack/.weechat/python/autoload/otr.py", line 127, in +2019-08-03 08:39:24 python: stdout/stderr (?): import potr +2019-08-03 08:39:24 python: stdout/stderr (?): ImportError: No module named potr +2019-08-03 08:39:24 =!= python: unable to parse file "/home/zack/.weechat/python/autoload/otr.py" +2019-08-03 08:39:25 =!= python: function "register" not found (or failed) in file "/home/zack/.weechat/python/autoload/urlview.py" +2019-08-03 08:39:25 python scripts loaded: apply_corrections, autojoin, grep +2019-08-03 08:39:25 script: 363 scripts for WeeChat 2.5 +2019-08-03 08:39:25 Plugins loaded: alias, buflist, charset, exec, fifo, fset, irc, logger, perl, python, relay, ruby, script, spell, trigger, xfer +2019-08-03 11:05:57 [core] +2019-08-03 11:05:57 away command filter key plugin reload set version +2019-08-03 11:05:57 bar cursor help layout print repeat unset wait +2019-08-03 11:05:57 buffer debug history mouse proxy save upgrade window +2019-08-03 11:05:57 color eval input mute quit secure uptime +2019-08-03 11:05:57 [buflist] +2019-08-03 11:05:57 buflist +2019-08-03 11:05:57 [ruby] +2019-08-03 11:05:57 ruby +2019-08-03 11:05:57 [charset] +2019-08-03 11:05:57 charset +2019-08-03 11:05:57 [spell] +2019-08-03 11:05:57 spell +2019-08-03 11:05:57 [irc] +2019-08-03 11:05:57 admin die lusers ping saquit userhost +2019-08-03 11:05:57 allchan disconnect map pong server users +2019-08-03 11:05:57 allpv halfop me query service version +2019-08-03 11:05:57 allserv ignore mode quiet servlist voice +2019-08-03 11:05:57 ban info motd quote squery wallchops +2019-08-03 11:05:57 cap invite msg reconnect squit wallops +2019-08-03 11:05:57 connect ison names rehash stats who +2019-08-03 11:05:57 ctcp join nick remove summon whois +2019-08-03 11:05:57 cycle kick notice restart time whowas +2019-08-03 11:05:57 dcc kickban notify sajoin topic +2019-08-03 11:05:57 dehalfop kill op samode trace +2019-08-03 11:05:57 deop links oper sanick unban +2019-08-03 11:05:57 devoice list part sapart unquiet +2019-08-03 11:05:57 [fset] +2019-08-03 11:05:57 fset +2019-08-03 11:05:57 [perl] +2019-08-03 11:05:57 highclean highmon iset perl +2019-08-03 11:05:57 [logger] +2019-08-03 11:05:57 logger +2019-08-03 11:05:57 [trigger] +2019-08-03 11:05:57 trigger +2019-08-03 11:05:57 [xfer] +2019-08-03 11:05:57 me xfer +2019-08-03 11:05:57 [exec] +2019-08-03 11:05:57 exec +2019-08-03 11:05:57 [script] +2019-08-03 11:05:57 script +2019-08-03 11:05:57 [fifo] +2019-08-03 11:05:57 fifo +2019-08-03 11:05:57 [relay] +2019-08-03 11:05:57 relay +2019-08-03 11:05:57 [python] +2019-08-03 11:05:57 autojoin grep logs python +2019-08-03 11:05:57 [alias] +2019-08-03 11:05:57 AAWAY CLOSE MSGBUF SLAP +2019-08-03 11:05:57 alias CS MUB T +2019-08-03 11:05:57 AME EXIT N UB +2019-08-03 11:05:57 AMSG HS NS UMODE +2019-08-03 11:05:57 ANICK IG OS V +2019-08-03 11:05:57 BEEP J Q W +2019-08-03 11:05:57 BS K REDRAW WC +2019-08-03 11:05:57 BYE KB save_settings WI +2019-08-03 11:05:57 C LEAVE SAY WII +2019-08-03 11:05:57 CHAT M setup_aspell WW +2019-08-03 11:05:57 CL MS SIGNOFF +2019-08-03 11:07:11 Windows list: +2019-08-03 11:07:11 [1] (10:11;124x57) +2019-08-03 11:07:11 [2] (10:0;124x10) +2019-08-03 11:07:13 Buffers list: +2019-08-03 11:07:13 [1] core.weechat (notify: all) +2019-08-03 11:07:13 [1] perl.highmon (notify: all) +2019-08-03 11:07:13 [1] irc.server.tilde (notify: all) +2019-08-03 11:07:13 [2] irc.tilde.#meta (notify: all) +2019-08-03 11:07:13 [3] irc.tilde.#team (notify: all) +2019-08-03 11:10:55 =!= Error with command "/buffer help" (help on command: /help buffer) +2019-08-03 11:11:06 [core] /buffer list +2019-08-03 11:11:06 add [-free] [-switch] +2019-08-03 11:11:06 clear [||-merged|-all [|...]] +2019-08-03 11:11:06 move |-|+ +2019-08-03 11:11:06 swap | [|] +2019-08-03 11:11:06 cycle | [|...] +2019-08-03 11:11:06 merge | +2019-08-03 11:11:06 unmerge [|-all] +2019-08-03 11:11:06 hide [||-all [|...]] +2019-08-03 11:11:06 unhide [||-all [|...]] +2019-08-03 11:11:06 renumber [ [ []]] +2019-08-03 11:11:06 close [[-]|...] +2019-08-03 11:11:06 notify +2019-08-03 11:11:06 localvar [|] +2019-08-03 11:11:06 set [] +2019-08-03 11:11:06 get +2019-08-03 11:11:06 |-|+| +2019-08-03 11:11:06 manage buffers +2019-08-03 11:11:06 list: list buffers (without argument, this list is displayed) +2019-08-03 11:11:06 add: add a new buffer (it can be closed with "/buffer close" or input "q") +2019-08-03 11:11:06 clear: clear buffer content (number for a buffer, -merged for merged buffers, -all for all buffers, or nothing for current buffer) +2019-08-03 11:11:06 move: move buffer in the list (may be relative, for example -1); "-" = move to first buffer number, "+" = move to last buffer number + 1 +2019-08-03 11:11:06 swap: swap two buffers (swap with current buffer if only one number/name given) +2019-08-03 11:11:06 cycle: jump loop between a list of buffers +2019-08-03 11:11:06 merge: merge current buffer to another buffer (chat area will be mix of both buffers) +2019-08-03 11:11:06 (by default ctrl-x switches between merged buffers) +2019-08-03 11:11:06 unmerge: unmerge buffer from other buffers which have same number +2019-08-03 11:11:06 hide: hide the buffer +2019-08-03 11:11:06 unhide: unhide the buffer +2019-08-03 11:11:06 renumber: renumber buffers (works only if option weechat.look.buffer_auto_renumber is off) +2019-08-03 11:11:06 close: close buffer (number/range or name is optional) +2019-08-03 11:11:06 notify: set notify level for current buffer: this level determines whether buffer will be added to hotlist or not: +2019-08-03 11:11:06 none: never +2019-08-03 11:11:06 highlight: for highlights only +2019-08-03 11:11:06 message: for messages from users + highlights +2019-08-03 11:11:06 all: all messages +2019-08-03 11:11:06 reset: reset to default value (all) +2019-08-03 11:11:06 localvar: display local variables for the buffer +2019-08-03 11:11:06 set: set a property for current buffer +2019-08-03 11:11:06 get: display a property of current buffer +2019-08-03 11:11:06 number: jump to buffer by number, possible prefix: +2019-08-03 11:11:06 '+': relative jump, add number to current +2019-08-03 11:11:06 '-': relative jump, sub number to current +2019-08-03 11:11:06 '*': jump to number, using option "weechat.look.jump_current_to_previous_buffer" +2019-08-03 11:11:06 -: jump to first buffer number +2019-08-03 11:11:06 +: jump to last buffer number +2019-08-03 11:11:06 name: jump to buffer by (partial) name +2019-08-03 11:11:06 Examples: +2019-08-03 11:11:06 clear current buffer: +2019-08-03 11:11:06 /buffer clear +2019-08-03 11:11:06 move buffer to number 5: +2019-08-03 11:11:06 /buffer move 5 +2019-08-03 11:11:06 swap buffer 1 with 3: +2019-08-03 11:11:06 /buffer swap 1 3 +2019-08-03 11:11:06 swap buffer #weechat with current buffer: +2019-08-03 11:11:06 /buffer swap #weechat +2019-08-03 11:11:06 jump on #chan1, #chan2, #chan3 and loop: +2019-08-03 11:11:06 /buffer cycle #chan1 #chan2 #chan3 +2019-08-03 11:11:06 merge with core buffer: +2019-08-03 11:11:06 /buffer merge 1 +2019-08-03 11:11:06 merge with #weechat buffer: +2019-08-03 11:11:06 /buffer merge #weechat +2019-08-03 11:11:06 unmerge buffer: +2019-08-03 11:11:06 /buffer unmerge +2019-08-03 11:11:06 close current buffer: +2019-08-03 11:11:06 /buffer close +2019-08-03 11:11:06 close buffers 5 to 7: +2019-08-03 11:11:06 /buffer close 5-7 +2019-08-03 11:11:06 jump to #weechat: +2019-08-03 11:11:06 /buffer #weechat +2019-08-03 11:11:06 jump to next buffer: +2019-08-03 11:11:06 /buffer +1 +2019-08-03 11:11:06 jump to last buffer number: +2019-08-03 11:11:06 /buffer + +2019-08-03 11:12:17 =!= Too few arguments for command "/buffer add" (help on command: /help buffer) +2019-08-03 11:12:37 [core] /buffer list +2019-08-03 11:12:37 add [-free] [-switch] +2019-08-03 11:12:37 clear [||-merged|-all [|...]] +2019-08-03 11:12:37 move |-|+ +2019-08-03 11:12:37 swap | [|] +2019-08-03 11:12:37 cycle | [|...] +2019-08-03 11:12:37 merge | +2019-08-03 11:12:37 unmerge [|-all] +2019-08-03 11:12:37 hide [||-all [|...]] +2019-08-03 11:12:37 unhide [||-all [|...]] +2019-08-03 11:12:37 renumber [ [ []]] +2019-08-03 11:12:37 close [[-]|...] +2019-08-03 11:12:37 notify +2019-08-03 11:12:37 localvar [|] +2019-08-03 11:12:37 set [] +2019-08-03 11:12:37 get +2019-08-03 11:12:37 |-|+| +2019-08-03 11:12:37 manage buffers +2019-08-03 11:12:37 list: list buffers (without argument, this list is displayed) +2019-08-03 11:12:37 add: add a new buffer (it can be closed with "/buffer close" or input "q") +2019-08-03 11:12:37 clear: clear buffer content (number for a buffer, -merged for merged buffers, -all for all buffers, or nothing for current buffer) +2019-08-03 11:12:37 move: move buffer in the list (may be relative, for example -1); "-" = move to first buffer number, "+" = move to last buffer number + 1 +2019-08-03 11:12:37 swap: swap two buffers (swap with current buffer if only one number/name given) +2019-08-03 11:12:37 cycle: jump loop between a list of buffers +2019-08-03 11:12:37 merge: merge current buffer to another buffer (chat area will be mix of both buffers) +2019-08-03 11:12:37 (by default ctrl-x switches between merged buffers) +2019-08-03 11:12:37 unmerge: unmerge buffer from other buffers which have same number +2019-08-03 11:12:37 hide: hide the buffer +2019-08-03 11:12:37 unhide: unhide the buffer +2019-08-03 11:12:37 renumber: renumber buffers (works only if option weechat.look.buffer_auto_renumber is off) +2019-08-03 11:12:37 close: close buffer (number/range or name is optional) +2019-08-03 11:12:37 notify: set notify level for current buffer: this level determines whether buffer will be added to hotlist or not: +2019-08-03 11:12:37 none: never +2019-08-03 11:12:37 highlight: for highlights only +2019-08-03 11:12:37 message: for messages from users + highlights +2019-08-03 11:12:37 all: all messages +2019-08-03 11:12:37 reset: reset to default value (all) +2019-08-03 11:12:37 localvar: display local variables for the buffer +2019-08-03 11:12:37 set: set a property for current buffer +2019-08-03 11:12:37 get: display a property of current buffer +2019-08-03 11:12:37 number: jump to buffer by number, possible prefix: +2019-08-03 11:12:37 '+': relative jump, add number to current +2019-08-03 11:12:37 '-': relative jump, sub number to current +2019-08-03 11:12:37 '*': jump to number, using option "weechat.look.jump_current_to_previous_buffer" +2019-08-03 11:12:37 -: jump to first buffer number +2019-08-03 11:12:37 +: jump to last buffer number +2019-08-03 11:12:37 name: jump to buffer by (partial) name +2019-08-03 11:12:37 Examples: +2019-08-03 11:12:37 clear current buffer: +2019-08-03 11:12:37 /buffer clear +2019-08-03 11:12:37 move buffer to number 5: +2019-08-03 11:12:37 /buffer move 5 +2019-08-03 11:12:37 swap buffer 1 with 3: +2019-08-03 11:12:37 /buffer swap 1 3 +2019-08-03 11:12:37 swap buffer #weechat with current buffer: +2019-08-03 11:12:37 /buffer swap #weechat +2019-08-03 11:12:37 jump on #chan1, #chan2, #chan3 and loop: +2019-08-03 11:12:37 /buffer cycle #chan1 #chan2 #chan3 +2019-08-03 11:12:37 merge with core buffer: +2019-08-03 11:12:37 /buffer merge 1 +2019-08-03 11:12:37 merge with #weechat buffer: +2019-08-03 11:12:37 /buffer merge #weechat +2019-08-03 11:12:37 unmerge buffer: +2019-08-03 11:12:37 /buffer unmerge +2019-08-03 11:12:37 close current buffer: +2019-08-03 11:12:37 /buffer close +2019-08-03 11:12:37 close buffers 5 to 7: +2019-08-03 11:12:37 /buffer close 5-7 +2019-08-03 11:12:37 jump to #weechat: +2019-08-03 11:12:37 /buffer #weechat +2019-08-03 11:12:37 jump to next buffer: +2019-08-03 11:12:37 /buffer +1 +2019-08-03 11:12:37 jump to last buffer number: +2019-08-03 11:12:37 /buffer + +2019-08-03 11:13:15 =!= irc: command "list" must be executed on irc buffer (server, channel or private) +2019-08-03 11:13:48 =!= irc: command "join" must be executed on irc buffer (server, channel or private) +2019-08-03 11:13:56 =!= irc: command "join" must be executed on irc buffer (server, channel or private) +2019-08-03 12:07:51 python: scripts unloaded +2019-08-03 12:07:51 fifo: pipe closed +2019-08-03 12:13:43 perl scripts loaded: highmon, iset +2019-08-03 12:13:43 python: stdout/stderr (?): Traceback (most recent call last): +2019-08-03 12:13:43 python: stdout/stderr (?): File "/home/zack/.weechat/python/autoload/otr.py", line 127, in +2019-08-03 12:13:43 python: stdout/stderr (?): import potr +2019-08-03 12:13:43 python: stdout/stderr (?): ImportError: No module named potr +2019-08-03 12:13:43 =!= python: unable to parse file "/home/zack/.weechat/python/autoload/otr.py" +2019-08-03 12:13:43 =!= python: function "register" not found (or failed) in file "/home/zack/.weechat/python/autoload/urlview.py" +2019-08-03 12:13:43 python scripts loaded: apply_corrections, autojoin, grep +2019-08-03 12:13:43 script: 363 scripts for WeeChat 2.5 +2019-08-03 12:13:43 Plugins loaded: alias, buflist, charset, exec, fifo, fset, irc, logger, perl, python, relay, ruby, script, spell, trigger, xfer +2019-08-03 12:27:58 python: scripts unloaded +2019-08-03 12:27:58 fifo: pipe closed +2019-08-03 17:09:46 perl scripts loaded: highmon, iset +2019-08-03 17:09:46 python: stdout/stderr (?): Traceback (most recent call last): +2019-08-03 17:09:46 python: stdout/stderr (?): File "/home/zack/.weechat/python/autoload/otr.py", line 127, in +2019-08-03 17:09:46 python: stdout/stderr (?): import potr +2019-08-03 17:09:46 python: stdout/stderr (?): ImportError: No module named potr +2019-08-03 17:09:46 =!= python: unable to parse file "/home/zack/.weechat/python/autoload/otr.py" +2019-08-03 17:09:46 =!= python: function "register" not found (or failed) in file "/home/zack/.weechat/python/autoload/urlview.py" +2019-08-03 17:09:46 python scripts loaded: apply_corrections, autojoin, grep +2019-08-03 17:09:46 script: downloading list of scripts... +2019-08-03 17:09:46 Plugins loaded: alias, buflist, charset, exec, fifo, fset, irc, logger, perl, python, relay, ruby, script, spell, trigger, xfer +2019-08-03 17:09:47 script: 363 scripts for WeeChat 2.5 +2019-08-03 17:35:15 =!= Too few arguments for command "/buffer add" (help on command: /help buffer) +2019-08-03 17:35:29 [core] /buffer list +2019-08-03 17:35:29 add [-free] [-switch] +2019-08-03 17:35:29 clear [||-merged|-all [|...]] +2019-08-03 17:35:29 move |-|+ +2019-08-03 17:35:29 swap | [|] +2019-08-03 17:35:29 cycle | [|...] +2019-08-03 17:35:29 merge | +2019-08-03 17:35:29 unmerge [|-all] +2019-08-03 17:35:29 hide [||-all [|...]] +2019-08-03 17:35:29 unhide [||-all [|...]] +2019-08-03 17:35:29 renumber [ [ []]] +2019-08-03 17:35:29 close [[-]|...] +2019-08-03 17:35:29 notify +2019-08-03 17:35:29 localvar [|] +2019-08-03 17:35:29 set [] +2019-08-03 17:35:29 get +2019-08-03 17:35:29 |-|+| +2019-08-03 17:35:29 manage buffers +2019-08-03 17:35:29 list: list buffers (without argument, this list is displayed) +2019-08-03 17:35:29 add: add a new buffer (it can be closed with "/buffer close" or input "q") +2019-08-03 17:35:29 clear: clear buffer content (number for a buffer, -merged for merged buffers, -all for all buffers, or nothing for current buffer) +2019-08-03 17:35:29 move: move buffer in the list (may be relative, for example -1); "-" = move to first buffer number, "+" = move to last buffer number + 1 +2019-08-03 17:35:29 swap: swap two buffers (swap with current buffer if only one number/name given) +2019-08-03 17:35:29 cycle: jump loop between a list of buffers +2019-08-03 17:35:29 merge: merge current buffer to another buffer (chat area will be mix of both buffers) +2019-08-03 17:35:29 (by default ctrl-x switches between merged buffers) +2019-08-03 17:35:29 unmerge: unmerge buffer from other buffers which have same number +2019-08-03 17:35:29 hide: hide the buffer +2019-08-03 17:35:29 unhide: unhide the buffer +2019-08-03 17:35:29 renumber: renumber buffers (works only if option weechat.look.buffer_auto_renumber is off) +2019-08-03 17:35:29 close: close buffer (number/range or name is optional) +2019-08-03 17:35:29 notify: set notify level for current buffer: this level determines whether buffer will be added to hotlist or not: +2019-08-03 17:35:29 none: never +2019-08-03 17:35:29 highlight: for highlights only +2019-08-03 17:35:29 message: for messages from users + highlights +2019-08-03 17:35:29 all: all messages +2019-08-03 17:35:29 reset: reset to default value (all) +2019-08-03 17:35:29 localvar: display local variables for the buffer +2019-08-03 17:35:29 set: set a property for current buffer +2019-08-03 17:35:29 get: display a property of current buffer +2019-08-03 17:35:29 number: jump to buffer by number, possible prefix: +2019-08-03 17:35:29 '+': relative jump, add number to current +2019-08-03 17:35:29 '-': relative jump, sub number to current +2019-08-03 17:35:29 '*': jump to number, using option "weechat.look.jump_current_to_previous_buffer" +2019-08-03 17:35:29 -: jump to first buffer number +2019-08-03 17:35:29 +: jump to last buffer number +2019-08-03 17:35:29 name: jump to buffer by (partial) name +2019-08-03 17:35:29 Examples: +2019-08-03 17:35:29 clear current buffer: +2019-08-03 17:35:29 /buffer clear +2019-08-03 17:35:29 move buffer to number 5: +2019-08-03 17:35:29 /buffer move 5 +2019-08-03 17:35:29 swap buffer 1 with 3: +2019-08-03 17:35:29 /buffer swap 1 3 +2019-08-03 17:35:29 swap buffer #weechat with current buffer: +2019-08-03 17:35:29 /buffer swap #weechat +2019-08-03 17:35:29 jump on #chan1, #chan2, #chan3 and loop: +2019-08-03 17:35:29 /buffer cycle #chan1 #chan2 #chan3 +2019-08-03 17:35:29 merge with core buffer: +2019-08-03 17:35:29 /buffer merge 1 +2019-08-03 17:35:29 merge with #weechat buffer: +2019-08-03 17:35:29 /buffer merge #weechat +2019-08-03 17:35:29 unmerge buffer: +2019-08-03 17:35:29 /buffer unmerge +2019-08-03 17:35:29 close current buffer: +2019-08-03 17:35:29 /buffer close +2019-08-03 17:35:29 close buffers 5 to 7: +2019-08-03 17:35:29 /buffer close 5-7 +2019-08-03 17:35:29 jump to #weechat: +2019-08-03 17:35:29 /buffer #weechat +2019-08-03 17:35:29 jump to next buffer: +2019-08-03 17:35:29 /buffer +1 +2019-08-03 17:35:29 jump to last buffer number: +2019-08-03 17:35:29 /buffer + +2019-08-03 17:35:57 [core] +2019-08-03 17:35:57 away buffer command debug filter history key mouse plugin proxy reload save set upgrade version window +2019-08-03 17:35:57 bar color cursor eval help input layout mute print quit repeat secure unset uptime wait +2019-08-03 17:35:57 [buflist] +2019-08-03 17:35:57 buflist +2019-08-03 17:35:57 [ruby] +2019-08-03 17:35:57 ruby +2019-08-03 17:35:57 [charset] +2019-08-03 17:35:57 charset +2019-08-03 17:35:57 [spell] +2019-08-03 17:35:57 spell +2019-08-03 17:35:57 [irc] +2019-08-03 17:35:57 admin cap dehalfop halfop join list motd notify pong rehash sanick servlist time userhost wallops +2019-08-03 17:35:57 allchan connect deop ignore kick lusers msg op query remove sapart squery topic users who +2019-08-03 17:35:57 allpv ctcp devoice info kickban map names oper quiet restart saquit squit trace version whois +2019-08-03 17:35:57 allserv cycle die invite kill me nick part quote sajoin server stats unban voice whowas +2019-08-03 17:35:57 ban dcc disconnect ison links mode notice ping reconnect samode service summon unquiet wallchops +2019-08-03 17:35:57 [fset] +2019-08-03 17:35:57 fset +2019-08-03 17:35:57 [perl] +2019-08-03 17:35:57 highclean highmon iset perl +2019-08-03 17:35:57 [logger] +2019-08-03 17:35:57 logger +2019-08-03 17:35:57 [trigger] +2019-08-03 17:35:57 trigger +2019-08-03 17:35:57 [xfer] +2019-08-03 17:35:57 me xfer +2019-08-03 17:35:57 [exec] +2019-08-03 17:35:57 exec +2019-08-03 17:35:57 [script] +2019-08-03 17:35:57 script +2019-08-03 17:35:57 [fifo] +2019-08-03 17:35:57 fifo +2019-08-03 17:35:57 [relay] +2019-08-03 17:35:57 relay +2019-08-03 17:35:57 [python] +2019-08-03 17:35:57 autojoin grep logs python +2019-08-03 17:35:57 [alias] +2019-08-03 17:35:57 AAWAY AMSG BS CHAT CS IG KB MS N Q SAY SLAP UMODE WC WW +2019-08-03 17:35:57 alias ANICK BYE CL EXIT J LEAVE MSGBUF NS REDRAW setup_aspell T V WI +2019-08-03 17:35:57 AME BEEP C CLOSE HS K M MUB OS save_settings SIGNOFF UB W WII +2019-08-03 17:36:19 =!= irc: unable to add temporary server "irc.freenode.net" because the addition of temporary servers with command /connect is currently disabled +2019-08-03 17:36:19 =!= irc: if you want to add a standard server, use the command "/server add" (see /help server); if you really want to add a temporary server (NOT SAVED), turn on the option irc.look.temporary_servers +2019-08-03 17:36:34 [irc] /server list|listfull [] +2019-08-03 17:36:34 add [/] [-temp] [-