aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTom Ryder <tom@sanctum.geek.nz>2023-05-11 11:17:10 +1200
committerTom Ryder <tom@sanctum.geek.nz>2023-05-11 11:17:10 +1200
commit9253bf31eca9b6471409b4c4c85f5ad07c9cfa83 (patch)
tree584ec3122462112332f1ee19e21f1cd3c9f22faf
parentMerge branch 'release/v12.37.0' (diff)
parentBump VERSION (diff)
downloaddotfiles-9253bf31eca9b6471409b4c4c85f5ad07c9cfa83.tar.gz
dotfiles-9253bf31eca9b6471409b4c4c85f5ad07c9cfa83.zip
Merge branch 'release/v12.38.0'v12.38.0
* release/v12.38.0: Fix xterm scroll behavior options for legibility Use xterm's built-in line-drawing
-rw-r--r--VERSION4
-rw-r--r--x/Xresources12
2 files changed, 11 insertions, 5 deletions
diff --git a/VERSION b/VERSION
index f80964d0..5a8553d8 100644
--- a/VERSION
+++ b/VERSION
@@ -1,2 +1,2 @@
-tejr dotfiles v12.37.0
-Wed, 12 Apr 2023 23:40:33 +0000
+tejr dotfiles v12.38.0
+Wed, 10 May 2023 23:17:07 +0000
diff --git a/x/Xresources b/x/Xresources
index 672fc214..f9db8401 100644
--- a/x/Xresources
+++ b/x/Xresources
@@ -72,17 +72,23 @@ XTerm.vt100.faceSize: 9
XTerm.vt100.renderFont: defaultOff
/**
+ * Draw our own box characters, even if the font seems to support them. Using
+ * Ubuntu Mono at least, this removes gaps between vertical lines.
+ */
+XTerm.vt100.forceBoxChars: true
+
+/**
* Put the terminal text contents flush against the edges of the window,
* otherwise things like tmux look awkward.
*/
XTerm.vt100.internalBorder: 0
/**
- * Don't jump to the bottom of the window just because of new output, but do so
- * if I actually type something. (Weird that the defaults are the opposite.)
+ * Jump to the end of the buffer if I write to it, but don't if there's just
+ * something new to read. Funny how the defaults are the other way around...
*/
-XTerm.vt100.scrollTtyOutput: false
XTerm.vt100.scrollKey: true
+XTerm.vt100.scrollTtyOutput: false
/**
* Bind extra keys to copy/paste to/from CLIPBOARD rather than PRIMARY, as