Advertisement
arfin97

Ubuntu - Xterm Configuration

May 16th, 2018
152
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Bash 1.20 KB | None | 0 0
  1. !after editing .Xdefaults it may be reloaded with:
  2. !xrdb -load ~/.Xdefaults
  3.  
  4. xterm*VT100*geometry: 94x28
  5. xterm*font:     *-fixed-*-*-*-18-*
  6. xterm*faceName: Ubuntu Mono
  7. xterm*faceSize: 18
  8. xterm*renderFont: true
  9. xterm*background: black
  10. xterm*foreground: white
  11. xterm*loginShell: true
  12. xterm*scrollBar: true
  13. xterm*rightScrollBar: true
  14. xterm*title: XTerm
  15. xterm*iconName: XTerm
  16. xterm*saveLines: 50000
  17. xterm*jumpScroll: true
  18. xterm*scrollTtyOutput: false
  19. xterm*scrollKey: true
  20. xterm*alwaysUseMods: true
  21. xterm*metaSendsEscape: true
  22. xterm*utf8Title: true
  23.  
  24. xterm*VT100.Translations: #override \
  25.     Shift <KeyPress> Insert: insert-selection(CLIPBOARD) \n\
  26.     Ctrl Shift <Key>V:    insert-selection(CLIPBOARD) \n\
  27.     Ctrl Shift <Key>C:    copy-selection(CLIPBOARD) \n\
  28.     Ctrl <Btn1Up>: exec-formatted("xdg-open '%t'", PRIMARY)
  29.  
  30. ! Only select text
  31. xterm*highlightSelection: true
  32. ! Remove trailing spaces
  33. xterm*trimSelection: true
  34.  
  35. ! Lines of output that you can scroll back over
  36. xterm*saveLines: 4096
  37. ! Turn the scrollbar on, and put it on the right
  38. xterm*scrollBar: true
  39. xterm*rightScrollBar: true
  40.  
  41. ! Do not scroll when there is new input e.g. tail -f /var/syslog
  42. xterm*scrollTtyOutput: false
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement