Advertisement
custompc

Xresources Xterm Settings

Mar 3rd, 2024
53
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.27 KB | None | 0 0
  1. ! -= XTERM SETTINGS =-
  2.  
  3. ! Size & Position
  4. xterm*VT100*geometry: 100x30+200+540
  5.  
  6. !The Window Title
  7. xterm*title: Terminal
  8.  
  9. ! Font Face
  10. !xterm*font:
  11. xterm*faceName: Terminus
  12. xterm*faceSize: 10
  13. xterm*renderFont: true
  14.  
  15. XTerm*Background: black
  16. XTerm*Foreground: grey
  17. XTerm*HiForeColor: grey
  18. XTerm*HiBackColor: black
  19.  
  20. ! Increase font size with Ctril -+
  21. xterm*VT100.Translations: #override \
  22. Ctrl <Key> minus: smaller-vt-font() \n\
  23. Ctrl <Key> plus: larger-vt-font() \n\
  24. Ctrl <Key> 0: set-vt-font(d)
  25.  
  26. ! Curosr Options
  27. xterm*cursorBlink: true
  28. xterm*cursorUnderLine: false
  29. !xterm*cursorColor: grey
  30. xcursor.theme:
  31.  
  32. ! Mouse pointer
  33. XTerm*pointerColor: grey
  34. XTerm*pointerColorBackground: black
  35. xterm*pointerShape: arrow
  36.  
  37. ! Scrolbar Settings
  38. xterm*scrollBar: off
  39. !xterm*rightScrollBar: true
  40.  
  41. ! Stop new output jumping to bottom
  42. !xterm*JumpScroll: on
  43. xterm*scrollTtyOutput: false
  44.  
  45. ! Amount of Scrollback History
  46. xterm*saveLines: 4096
  47.  
  48. ! Push text away from border
  49. xterm*internalBorder: 6
  50.  
  51. ! Bring in Env Vars
  52. xterm*loginshell: true
  53. ! xterm*eightBitInput: false
  54.  
  55. ! Enable copy/paste.
  56. ! http://www.davidsimmons.com/soft/xtermhacks/
  57. xterm*VT100.translations: #override <Btn1Up>: select-end(PRIMARY, CLIPBOARD, CUT_BUFFER0)
  58. XTerm*selectToClipboard: true
Tags: Linux unix BSD
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement