--- a/.hgignore Mon Apr 22 13:16:39 2019 -0400
+++ b/.hgignore Wed Apr 24 20:58:18 2019 -0700
@@ -44,5 +44,6 @@
vim/bundle/LanguageClient-neovim
weechat/sec.conf
lisp/bin
+go/bin
lisp/man
mutt/accounts
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/go/encconv.go Wed Apr 24 20:58:18 2019 -0700
@@ -0,0 +1,14 @@
+package main
+
+import (
+ "io"
+ "os"
+
+ "golang.org/x/text/encoding/charmap"
+ "golang.org/x/text/transform"
+)
+
+func main() {
+ r := transform.NewReader(os.Stdin, charmap.CodePage437.NewDecoder())
+ io.Copy(os.Stdout, r)
+}
--- a/xsessionrc Mon Apr 22 13:16:39 2019 -0400
+++ b/xsessionrc Wed Apr 24 20:58:18 2019 -0700
@@ -21,5 +21,5 @@
# /usr/bin/dunst -config $HOME/.dunstrc &
-exec ssh-agent /usr/local/bin/stumpwm
+exec gpg-agent --daemon --enable-ssh-support /usr/local/bin/stumpwm