Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.
Ce dépôt est archivé. Vous pouvez voir les fichiers et le cloner, mais vous ne pouvez pas pousser ni ouvrir de ticket/demande d'ajout.

48 lignes
1.1KB

  1. ! {{ansible_managed}}
  2. ! DPI
  3. Xft.dpi: {{home_xft_dpi}}
  4. ! These might also be useful depending on your monitor and personal preference:
  5. Xft.autohint: 0
  6. Xft.lcdfilter: lcddefault
  7. Xft.hintstyle: hintfull
  8. Xft.hinting: 1
  9. Xft.antialias: 1
  10. Xft.rgba: rgb
  11. ! set fonts
  12. URxvt.font:xft:Monospace:pixelsize={{home_urxvt_font_pixelsize}}
  13. URxvt.boldfont:xft:Monospace-Bold:pixelsize={{home_urxvt_font_pixelsize}}
  14. ! set colors
  15. URxvt*background: black
  16. URxvt*foreground: white
  17. ! save number lines in the scrollback buffer
  18. URxvt.saveLines: 10000
  19. ! disable scrollbar
  20. URxvt*scrollBar: false
  21. ! do not scroll with output
  22. URxvt*scrollTtyOutput: false
  23. ! scroll in relation to buffer (with mouse scroll or Shift+Page Up)
  24. URxvt*scrollWithBuffer: true
  25. ! scroll back to the bottom on keypress
  26. URxvt*scrollTtyKeypress: true
  27. ! scrollback buffer in secondary screen
  28. URxvt.secondaryScreen: 1
  29. URxvt.secondaryScroll: 0
  30. {% if not ansible_lsb.id == "Raspbian" %}
  31. ! fake transparency
  32. urxvt*transparent: true
  33. urxvt*shading: 30
  34. ! https://bbs.archlinux.org/viewtopic.php?id=222070
  35. URxvt*ineheritPixmap: true
  36. {% endif %}