commit c1094bdbfbee5738278702a32b37c86ee2ef175f from: Sara Burke date: Sun Feb 15 03:51:32 2026 UTC add Xterm/Xresources file to match bsd-dark theme commit - 731e73a90e3da4a325537b35194caa25894d1235 commit + c1094bdbfbee5738278702a32b37c86ee2ef175f blob - /dev/null blob + 98c8ea9e4e116fae3dbf1da88c37005fe753e388 (mode 644) --- /dev/null +++ .Xresources @@ -0,0 +1,63 @@ +! bsd-dark theme for xterm +! Place this file at ~/.Xresources +! Load with: xrdb -merge ~/.Xresources + +! Font - GoMono to match your Terminal.app profile +! On OpenBSD: install go-fonts from packages +! On macOS: should be available if installed system-wide +XTerm*faceName: Go Mono +XTerm*faceSize: 13 + +! Terminal basics +XTerm*termName: xterm-256color +XTerm*locale: true +XTerm*utf8: 2 +XTerm*metaSendsEscape: true +XTerm*saveLines: 4096 +XTerm*scrollBar: false +XTerm*loginShell: true +XTerm*bellIsUrgent: false +XTerm*visualBell: false + +! Background and foreground +XTerm*background: #14130e +XTerm*foreground: #b7a980 +XTerm*cursorColor: #7a7154 +XTerm*highlightColor: #a34110 +XTerm*highlightTextColor: #cdbc8e + +! Bold matches your Terminal.app (bright white = bold) +XTerm*boldMode: false +XTerm*colorBDMode: true +XTerm*colorBD: #cdbc8e + +! ANSI palette (0-7: normal, 8-15: bright) +XTerm*color0: #161510 +XTerm*color1: #a32810 +XTerm*color2: #727a18 +XTerm*color3: #a37720 +XTerm*color4: #3d6266 +XTerm*color5: #7a4a55 +XTerm*color6: #557a55 +XTerm*color7: #998d6b +XTerm*color8: #4c4635 +XTerm*color9: #cc3214 +XTerm*color10: #8e991e +XTerm*color11: #cc9528 +XTerm*color12: #4c7b7f +XTerm*color13: #995b6b +XTerm*color14: #6b996b +XTerm*color15: #cdbc8e + +! Clipboard integration +! select-to-clipboard: selecting text copies to CLIPBOARD (not just PRIMARY) +! On macOS+XQuartz: CLIPBOARD syncs with the system pasteboard +XTerm*selectToClipboard: true + +! Key bindings for copy/paste +! Ctrl-Shift-C/V for copy/paste (works on both platforms) +! On macOS under XQuartz, Super (Cmd) key is tricky - Ctrl-Shift is more reliable +XTerm*translations: #override \n\ + Ctrl Shift C: copy-selection(CLIPBOARD) \n\ + Ctrl Shift V: insert-selection(CLIPBOARD) \n\ + Shift Insert: insert-selection(CLIPBOARD)