Advertisement
Guest User

Untitled

a guest
Dec 16th, 2018
301
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.42 KB | None | 0 0
  1. ! ===== fonts
  2. Xft.autohint : 0
  3. Xft.lcdfilter : lcddefault
  4. Xft.hintstyle : hintslight
  5. Xft.hinting : 1
  6. Xft.antialias : 1
  7. Xft.rgba : rgb
  8. ! fixed is the one true font - use iso10646 for unicode characters
  9. *font : -misc-fixed-medium-r-semicondensed-*-13-*-*-*-*-*-iso10646-1
  10.  
  11. ! ===== xidle
  12. ! drag pointer to lower left corner to lock screen
  13. XIdle*position : sw
  14. ! and leave it there for one second.
  15. XIdle*delay : 1
  16. ! also lock screen after 5 minutes idle
  17. XIdle*timeout : 300
  18.  
  19. ! ===== xlock
  20. ! actually turn the backlight off
  21. XLock.dpmsoff : 1
  22. ! plain white-on-black lock screen
  23. XLock.description : off
  24. XLock.echokeys : off
  25. XLock.info :
  26. XLock.background : black
  27. XLock.foreground : white
  28. XLock.mode : blank
  29. XLock.username : username:
  30. XLock.password : password:
  31. XLock.font : -misc-fixed-medium-r-normal-*-15-*-*-*-*-*-iso10646-1
  32. XLock.planfont : -misc-fixed-medium-r-normal-*-13-*-*-*-*-*-iso10646-1
  33.  
  34. ! ===== xclock
  35. ! digital clock in lower right-hand corner
  36. XClock*analog : false
  37. XClock*twentyfour : true
  38. XClock*padding : 0
  39. XClock*geometry : -2-2
  40. XClock*render : false
  41. XClock*font : -misc-fixed-bold-r-normal-*-13-*-*-*-*-*-iso10646-1
  42. XClock*height : 12
  43. XClock*background : dimgray
  44. XClock*foreground : white
  45. XClock*borderWidth : 0
  46.  
  47. ! ===== xterm
  48. ! zenburn theme - http://kippura.org/zenburnpage
  49. XTerm*background : #3f3f3f
  50. XTerm*foreground : #dcdccc
  51. XTerm*cursorColor : #aaaaaa
  52. XTerm*colorUL : #366060
  53. XTerm*underlineColor : #dfaf8f
  54. XTerm*color0 : #3f3f3f
  55. XTerm*color1 : #cc9393
  56. XTerm*color2 : #7f9f7f
  57. XTerm*color3 : #d0bf8f
  58. XTerm*color4 : #6ca0a3
  59. XTerm*color5 : #dc8cc3
  60. XTerm*color6 : #93e0e3
  61. XTerm*color7 : #dcdccc
  62. XTerm*color8 : #000000
  63. XTerm*color9 : #dca3a3
  64. XTerm*color10 : #bfebbf
  65. XTerm*color11 : #f0dfaf
  66. XTerm*color12 : #8cd0d3
  67. XTerm*color13 : #dc8cc3
  68. XTerm*color14 : #93e0e3
  69. XTerm*color15 : #ffffff
  70.  
  71. ! remove the additional black border
  72. XTerm*borderWidth : 0
  73. XTerm*internalBorder : 2
  74. ! set TERM env variable to use 256 colors
  75. XTerm*termName : xterm-256color
  76. ! make alt key work normally
  77. XTerm*vt100.metaSendsEscape : true
  78. ! save ~10,000 lines of scrollback
  79. XTerm*v100.saveLines : 10240
  80. ! hide scrollbar
  81. XTerm*vt100.scrollBar : false
  82. ! terminal bell tells the window manager to raise urgent flag
  83. XTerm*vt100.bellIsUrgent : true
  84. ! no bold fonts - just use brighter colors
  85. XTerm*allowBoldFonts : false
  86. ! pressing a key automatically scrolls to the bottom
  87. XTerm*scrollKey : true
  88. ! don't allow terminal to go fullscreen
  89. XTerm*fullscreen : never
  90. ! clicking a line selects only from the current word forward
  91. XTerm*cutToBeginningOfLine : false
  92. ! and don't include a trailing newline in the selection!
  93. XTerm*cutNewline : false
  94. ! some black magic to change what characters XTerm considers "word delimiters"
  95. XTerm*charClass : 33:48,36-47:48,58-59:48,61:48,63-64:48,95:48,126:48
  96. ! select word on two clicks
  97. XTerm*on2Clicks : word
  98. ! select whole line on three clicks
  99. XTerm*on3Clicks : line
  100. ! shift + left click to open selection in web browser
  101. XTerm*VT100*Translations : #override Shift : exec-formatted("chrome --enable-unveil '%t'", PRIMARY)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement