From 5ecffbd19511011a8bd13ba3c2e529e3f4c6cc2e Mon Sep 17 00:00:00 2001 From: Tom Ryder Date: Sat, 11 Feb 2023 14:38:08 +1300 Subject: Re-order xterm resources --- x/Xresources | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/x/Xresources b/x/Xresources index b957cb39..b5081a80 100644 --- a/x/Xresources +++ b/x/Xresources @@ -1,13 +1,13 @@ /* Declare our xterms have 256 colors */ XTerm.termName: xterm-256color -/* Flash my window manager if a BEL is sounded in an xterm */ -XTerm.vt100.bellIsUrgent: true - /* Don't munge 8th bit of characters with Alt, send an Escape prefix instead */ XTerm.vt100.altIsNotMeta: true XTerm.vt100.altSendsEscape: true +/* Flash my window manager if a BEL is sounded in an xterm */ +XTerm.vt100.bellIsUrgent: true + /** * Stick all of the non-control ASCII characters into the same xterm selection * group as the alphanumeric ones added by default, except for space and the -- cgit v1.2.3 From 8d1404737ec0a81491389c100b94534c5883f80a Mon Sep 17 00:00:00 2001 From: Tom Ryder Date: Sat, 11 Feb 2023 14:38:21 +1300 Subject: Use newer rgb: syntax for xterm color resources --- x/Xresources | 36 ++++++++++++++++++------------------ 1 file changed, 18 insertions(+), 18 deletions(-) diff --git a/x/Xresources b/x/Xresources index b5081a80..ed85bdcc 100644 --- a/x/Xresources +++ b/x/Xresources @@ -26,21 +26,21 @@ XTerm.vt100.internalBorder: 0 * Set some less harsh colors than the xterm defaults; I think I got these from * somewhere else and tweaked them, but I can't remember where it was now. */ -XTerm.vt100.background: #030303 -XTerm.vt100.foreground: #E0E0E0 -XTerm.vt100.color0: #030303 -XTerm.vt100.color1: #CC0000 -XTerm.vt100.color2: #3EAA06 -XTerm.vt100.color3: #C4A000 -XTerm.vt100.color4: #3465A4 -XTerm.vt100.color5: #75507B -XTerm.vt100.color6: #06989A -XTerm.vt100.color7: #D3D7CF -XTerm.vt100.color8: #303030 -XTerm.vt100.color9: #EF2929 -XTerm.vt100.color10: #7AF234 -XTerm.vt100.color11: #FCE94F -XTerm.vt100.color12: #729FCF -XTerm.vt100.color13: #AD7FA8 -XTerm.vt100.color14: #34E2E2 -XTerm.vt100.color15: #EEEEEC +XTerm.vt100.background: rgb:03/03/03 +XTerm.vt100.foreground: rgb:e0/e0/e0 +XTerm.vt100.color0: rgb:03/03/03 +XTerm.vt100.color1: rgb:cc/00/00 +XTerm.vt100.color2: rgb:3e/aa/06 +XTerm.vt100.color3: rgb:c4/a0/00 +XTerm.vt100.color4: rgb:34/65/a4 +XTerm.vt100.color5: rgb:75/50/7b +XTerm.vt100.color6: rgb:06/98/9a +XTerm.vt100.color7: rgb:d3/d7/cf +XTerm.vt100.color8: rgb:30/30/30 +XTerm.vt100.color9: rgb:ef/29/29 +XTerm.vt100.color10: rgb:7a/f2/34 +XTerm.vt100.color11: rgb:fc/e9/4f +XTerm.vt100.color12: rgb:72/9f/cf +XTerm.vt100.color13: rgb:ad/7f/a8 +XTerm.vt100.color14: rgb:34/e2/e2 +XTerm.vt100.color15: rgb:ee/ee/ec -- cgit v1.2.3 From eb0a456ee9f8e77756c8ee73ee727d70b0fa0022 Mon Sep 17 00:00:00 2001 From: Tom Ryder Date: Sat, 11 Mar 2023 18:29:35 +1300 Subject: Add SSH host completion for Mosh --- bash/bash_completion.d/mosh.bash | 5 +++++ 1 file changed, 5 insertions(+) create mode 100644 bash/bash_completion.d/mosh.bash diff --git a/bash/bash_completion.d/mosh.bash b/bash/bash_completion.d/mosh.bash new file mode 100644 index 00000000..17d72ca1 --- /dev/null +++ b/bash/bash_completion.d/mosh.bash @@ -0,0 +1,5 @@ +# Completion for mosh(1) with ssh_config(5) hostnames +if ! declare -F _ssh_config_hosts >/dev/null ; then + source "$HOME"/.bash_completion.d/_ssh_config_hosts.bash +fi +complete -F _ssh_config_hosts -o bashdefault -o default mosh -- cgit v1.2.3 From fbce6e0ef7c2ddcb2fd476e6b9427d72dc2c3b8f Mon Sep 17 00:00:00 2001 From: Tom Ryder Date: Sat, 11 Mar 2023 18:30:42 +1300 Subject: Bump VERSION --- VERSION | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/VERSION b/VERSION index 602cf5a8..a7168c9e 100644 --- a/VERSION +++ b/VERSION @@ -1,2 +1,2 @@ -tejr dotfiles v12.28.0 -Fri, 10 Feb 2023 17:54:37 +0000 +tejr dotfiles v12.29.0 +Sat, 11 Mar 2023 05:30:42 +0000 -- cgit v1.2.3