# HG changeset patch # User Steve Losh # Date 1663693005 14400 # Node ID 1e626e20d5e6776c4ee169a49399fe7dc27be651 # Parent 746ca2de75033911a1b5c72584b2d09ad92a363e# Parent d8677652f94b27fae44d4e66bbce3c0053cd7e3f Merge diff -r 746ca2de7503 -r 1e626e20d5e6 bin/bootstrap.sh --- a/bin/bootstrap.sh Tue Sep 20 12:53:14 2022 -0400 +++ b/bin/bootstrap.sh Tue Sep 20 12:56:45 2022 -0400 @@ -54,7 +54,6 @@ ensure_link "src/dotfiles/sqliterc" ".sqliterc" ensure_link "src/dotfiles/stumpwmrc" ".stumpwmrc" ensure_link "src/dotfiles/stumpwm/local-share-stumpwm" ".local/share/stumpwm" -ensure_link "src/dotfiles/tmux/tmux.conf" ".tmux.conf" ensure_link "src/dotfiles/vim" ".vim" ensure_link "src/dotfiles/vim/vimrc" ".vimrc" ensure_link "src/dotfiles/w3m-keymap" ".w3m/keymap" diff -r 746ca2de7503 -r 1e626e20d5e6 bin/external-ip --- a/bin/external-ip Tue Sep 20 12:53:14 2022 -0400 +++ b/bin/external-ip Tue Sep 20 12:56:45 2022 -0400 @@ -4,5 +4,5 @@ #dig @resolver1.opendns.com ANY myip.opendns.com +short -curl whatismyip.stevelosh.com +curl https://whatismyip.stevelosh.com diff -r 746ca2de7503 -r 1e626e20d5e6 bin/pastebin --- a/bin/pastebin Tue Sep 20 12:53:14 2022 -0400 +++ b/bin/pastebin Tue Sep 20 12:56:45 2022 -0400 @@ -2,7 +2,7 @@ set -euo pipefail -PASTE_SHA=$(ssh paste.stevelosh.com -- 'cat > tmppaste && sha1sum tmppaste | cut -d" " -f1 && mv tmppaste /var/www/paste/`sha1sum tmppaste | cut -d" " -f1`') +PASTE_SHA=$(ssh paste.stevelosh.com -- 'cat > tmppaste && sha1sum tmppaste | cut -d" " -f1 && mv tmppaste /var/www/paste.stevelosh.com/`sha1sum tmppaste | cut -d" " -f1`') URL="https://paste.stevelosh.com/$PASTE_SHA" echo -n "$URL" | pbcopy diff -r 746ca2de7503 -r 1e626e20d5e6 fish/config.fish --- a/fish/config.fish Tue Sep 20 12:53:14 2022 -0400 +++ b/fish/config.fish Tue Sep 20 12:56:45 2022 -0400 @@ -196,7 +196,7 @@ set_color normal printf ' on ' set_color magenta - printf '%s' (git current-branch ^/dev/null) + printf '%s' (git current-branch 2>/dev/null) set_color green git_prompt_status set_color normal diff -r 746ca2de7503 -r 1e626e20d5e6 fish/functions/serve-this.fish --- a/fish/functions/serve-this.fish Tue Sep 20 12:53:14 2022 -0400 +++ b/fish/functions/serve-this.fish Tue Sep 20 12:56:45 2022 -0400 @@ -1,3 +1,3 @@ function serve-this -d "Launch a webserver on 8000 serving the cwd" - python -m SimpleHTTPServer + python3 -m http.server end diff -r 746ca2de7503 -r 1e626e20d5e6 lispwords --- a/lispwords Tue Sep 20 12:53:14 2022 -0400 +++ b/lispwords Tue Sep 20 12:56:45 2022 -0400 @@ -146,3 +146,5 @@ ; boots (1 event-case) +; parsnip +(1 let!) diff -r 746ca2de7503 -r 1e626e20d5e6 remote/bootstrap.sh --- a/remote/bootstrap.sh Tue Sep 20 12:53:14 2022 -0400 +++ b/remote/bootstrap.sh Tue Sep 20 12:56:45 2022 -0400 @@ -9,8 +9,7 @@ # Already linked. true elif test -e "$dst"; then - echo File "$dst" already exists and is not a symbolic link. - # exit 1 + echo File "$dst" already exists, skipping. elif test ! -e "$src"; then echo File "$src" does not exist. exit 1 diff -r 746ca2de7503 -r 1e626e20d5e6 vim/custom-dictionary.utf-8.add --- a/vim/custom-dictionary.utf-8.add Tue Sep 20 12:53:14 2022 -0400 +++ b/vim/custom-dictionary.utf-8.add Tue Sep 20 12:56:45 2022 -0400 @@ -321,3 +321,9 @@ Virtualbox libvirt qemu +superclasses +metaclasses +Metaobject +memoize +metaobjects +memoized diff -r 746ca2de7503 -r 1e626e20d5e6 vim/vimrc --- a/vim/vimrc Tue Sep 20 12:53:14 2022 -0400 +++ b/vim/vimrc Tue Sep 20 12:56:45 2022 -0400 @@ -1191,6 +1191,10 @@ au FileType lisp noremap :call SexpForward() au FileType lisp noremap :call SexpUp() au FileType lisp noremap :call SexpDown() + + " Writing + + au FileType lisp noremap = I; => augroup END " }}} " }}} diff -r 746ca2de7503 -r 1e626e20d5e6 weechat/alias.conf --- a/weechat/alias.conf Tue Sep 20 12:53:14 2022 -0400 +++ b/weechat/alias.conf Tue Sep 20 12:56:45 2022 -0400 @@ -6,7 +6,7 @@ # # Use commands like /set or /fset to change settings in WeeChat. # -# For more info, see: https://weechat.org/doc/quickstart +# For more info, see: https://weechat.org/doc/quickstart/ # [cmd] diff -r 746ca2de7503 -r 1e626e20d5e6 weechat/autosort.conf --- a/weechat/autosort.conf Tue Sep 20 12:53:14 2022 -0400 +++ b/weechat/autosort.conf Tue Sep 20 12:56:45 2022 -0400 @@ -6,7 +6,7 @@ # # Use commands like /set or /fset to change settings in WeeChat. # -# For more info, see: https://weechat.org/doc/quickstart +# For more info, see: https://weechat.org/doc/quickstart/ # [sorting] diff -r 746ca2de7503 -r 1e626e20d5e6 weechat/buflist.conf --- a/weechat/buflist.conf Tue Sep 20 12:53:14 2022 -0400 +++ b/weechat/buflist.conf Tue Sep 20 12:56:45 2022 -0400 @@ -6,7 +6,7 @@ # # Use commands like /set or /fset to change settings in WeeChat. # -# For more info, see: https://weechat.org/doc/quickstart +# For more info, see: https://weechat.org/doc/quickstart/ # [look] diff -r 746ca2de7503 -r 1e626e20d5e6 weechat/charset.conf --- a/weechat/charset.conf Tue Sep 20 12:53:14 2022 -0400 +++ b/weechat/charset.conf Tue Sep 20 12:56:45 2022 -0400 @@ -6,7 +6,7 @@ # # Use commands like /set or /fset to change settings in WeeChat. # -# For more info, see: https://weechat.org/doc/quickstart +# For more info, see: https://weechat.org/doc/quickstart/ # [default] diff -r 746ca2de7503 -r 1e626e20d5e6 weechat/exec.conf --- a/weechat/exec.conf Tue Sep 20 12:53:14 2022 -0400 +++ b/weechat/exec.conf Tue Sep 20 12:56:45 2022 -0400 @@ -6,7 +6,7 @@ # # Use commands like /set or /fset to change settings in WeeChat. # -# For more info, see: https://weechat.org/doc/quickstart +# For more info, see: https://weechat.org/doc/quickstart/ # [command] diff -r 746ca2de7503 -r 1e626e20d5e6 weechat/fifo.conf --- a/weechat/fifo.conf Tue Sep 20 12:53:14 2022 -0400 +++ b/weechat/fifo.conf Tue Sep 20 12:56:45 2022 -0400 @@ -6,7 +6,7 @@ # # Use commands like /set or /fset to change settings in WeeChat. # -# For more info, see: https://weechat.org/doc/quickstart +# For more info, see: https://weechat.org/doc/quickstart/ # [file] diff -r 746ca2de7503 -r 1e626e20d5e6 weechat/fset.conf --- a/weechat/fset.conf Tue Sep 20 12:53:14 2022 -0400 +++ b/weechat/fset.conf Tue Sep 20 12:56:45 2022 -0400 @@ -6,7 +6,7 @@ # # Use commands like /set or /fset to change settings in WeeChat. # -# For more info, see: https://weechat.org/doc/quickstart +# For more info, see: https://weechat.org/doc/quickstart/ # [look] diff -r 746ca2de7503 -r 1e626e20d5e6 weechat/logger.conf --- a/weechat/logger.conf Tue Sep 20 12:53:14 2022 -0400 +++ b/weechat/logger.conf Tue Sep 20 12:56:45 2022 -0400 @@ -6,7 +6,7 @@ # # Use commands like /set or /fset to change settings in WeeChat. # -# For more info, see: https://weechat.org/doc/quickstart +# For more info, see: https://weechat.org/doc/quickstart/ # [look] diff -r 746ca2de7503 -r 1e626e20d5e6 weechat/python.conf --- a/weechat/python.conf Tue Sep 20 12:53:14 2022 -0400 +++ b/weechat/python.conf Tue Sep 20 12:56:45 2022 -0400 @@ -6,7 +6,7 @@ # # Use commands like /set or /fset to change settings in WeeChat. # -# For more info, see: https://weechat.org/doc/quickstart +# For more info, see: https://weechat.org/doc/quickstart/ # [look] diff -r 746ca2de7503 -r 1e626e20d5e6 weechat/relay.conf --- a/weechat/relay.conf Tue Sep 20 12:53:14 2022 -0400 +++ b/weechat/relay.conf Tue Sep 20 12:56:45 2022 -0400 @@ -6,7 +6,7 @@ # # Use commands like /set or /fset to change settings in WeeChat. # -# For more info, see: https://weechat.org/doc/quickstart +# For more info, see: https://weechat.org/doc/quickstart/ # [look] @@ -30,7 +30,7 @@ auth_timeout = 60 bind_address = "" clients_purge_delay = 0 -compression_level = 6 +compression = 20 ipv6 = on max_clients = 5 nonce_size = 16 diff -r 746ca2de7503 -r 1e626e20d5e6 weechat/script.conf --- a/weechat/script.conf Tue Sep 20 12:53:14 2022 -0400 +++ b/weechat/script.conf Tue Sep 20 12:56:45 2022 -0400 @@ -6,7 +6,7 @@ # # Use commands like /set or /fset to change settings in WeeChat. # -# For more info, see: https://weechat.org/doc/quickstart +# For more info, see: https://weechat.org/doc/quickstart/ # [look] diff -r 746ca2de7503 -r 1e626e20d5e6 weechat/trigger.conf --- a/weechat/trigger.conf Tue Sep 20 12:53:14 2022 -0400 +++ b/weechat/trigger.conf Tue Sep 20 12:56:45 2022 -0400 @@ -6,7 +6,7 @@ # # Use commands like /set or /fset to change settings in WeeChat. # -# For more info, see: https://weechat.org/doc/quickstart +# For more info, see: https://weechat.org/doc/quickstart/ # [look] diff -r 746ca2de7503 -r 1e626e20d5e6 weechat/typing.conf --- a/weechat/typing.conf Tue Sep 20 12:53:14 2022 -0400 +++ b/weechat/typing.conf Tue Sep 20 12:56:45 2022 -0400 @@ -6,7 +6,7 @@ # # Use commands like /set or /fset to change settings in WeeChat. # -# For more info, see: https://weechat.org/doc/quickstart +# For more info, see: https://weechat.org/doc/quickstart/ # [look] diff -r 746ca2de7503 -r 1e626e20d5e6 weechat/urlgrab.conf --- a/weechat/urlgrab.conf Tue Sep 20 12:53:14 2022 -0400 +++ b/weechat/urlgrab.conf Tue Sep 20 12:56:45 2022 -0400 @@ -6,7 +6,7 @@ # # Use commands like /set or /fset to change settings in WeeChat. # -# For more info, see: https://weechat.org/doc/quickstart +# For more info, see: https://weechat.org/doc/quickstart/ # [color] diff -r 746ca2de7503 -r 1e626e20d5e6 weechat/xfer.conf --- a/weechat/xfer.conf Tue Sep 20 12:53:14 2022 -0400 +++ b/weechat/xfer.conf Tue Sep 20 12:56:45 2022 -0400 @@ -6,7 +6,7 @@ # # Use commands like /set or /fset to change settings in WeeChat. # -# For more info, see: https://weechat.org/doc/quickstart +# For more info, see: https://weechat.org/doc/quickstart/ # [look]