Du kan inte välja fler än 25 ämnen Ämnen måste starta med en bokstav eller siffra, kan innehålla bindestreck ('-') och vara max 35 tecken långa.
This repo is archived. You can view files and clone it, but cannot push or open issues/pull-requests.

urxvt.Xresources.j2 792B

12345678910111213141516171819202122232425262728293031323334
  1. ! set font to Terminus
  2. urxvt*font: xft:Terminus:pixelsize=14
  3. urxvt*boldFont: xft:Terminus:pixelsize=14
  4. ! set colors
  5. URxvt*background: black
  6. URxvt*foreground: white
  7. ! save number lines in the scrollback buffer
  8. URxvt.saveLines: 10000
  9. ! disable scrollbar
  10. URxvt*scrollBar: false
  11. ! do not scroll with output
  12. URxvt*scrollTtyOutput: false
  13. ! scroll in relation to buffer (with mouse scroll or Shift+Page Up)
  14. URxvt*scrollWithBuffer: true
  15. ! scroll back to the bottom on keypress
  16. URxvt*scrollTtyKeypress: true
  17. ! scrollback buffer in secondary screen
  18. URxvt.secondaryScreen: 1
  19. URxvt.secondaryScroll: 0
  20. {% if not ansible_lsb.id == "Raspbian" %}
  21. ! fake transparency
  22. urxvt*transparent: true
  23. urxvt*shading: 30
  24. ! https://bbs.archlinux.org/viewtopic.php?id=222070
  25. URxvt*ineheritPixmap: true
  26. {% endif %}