Dotfiles for my tiling window manager + terminal workflow.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

56 lines
1.0 KiB

  1. /* font [[[ */
  2. {{ if eq .chezmoi.fullHostname "x1-carbon" }}
  3. URxvt.font: xft:DejaVuSansMono Nerd Font Mono:size=11
  4. {{ else }}
  5. URxvt.font: xft:DejaVuSansMono Nerd Font Mono:size=14
  6. {{ end }}
  7. ! URxvt.font: xft:Hack:size=18
  8. /* ]]] font */
  9. /* transparency [[[ */
  10. URxvt*transparent: true
  11. /* transparency */
  12. URxvt*inheritPixmap: true
  13. ! URxvt*transparent: false
  14. ! URxvt*shading: 0 (blackest) to 99 black, 101 to 200 (whitest) white
  15. URxvt*shading: 40
  16. ! URxvt*shading: 35
  17. /* ]]] transparency */
  18. /* scrollBar [[[ */
  19. URxvt.scrollBar: false
  20. ! URxvt.scrollBar: true
  21. ! URxvt*scrollBar_right: true
  22. /* ]]] scrollBar */
  23. /* Clickable URLs [[[ */
  24. URxvt.perl-ext-common: default,matcher
  25. URxvt.url-launcher: /usr/bin/xdg-open
  26. URxvt.matcher.button: 1
  27. /* ]]] Clickable URLs */
  28. /* HiDPI [[[ */
  29. {{ if eq .chezmoi.fullHostname "x1-carbon" }}
  30. Xft.dpi: 210
  31. {{ else }}
  32. Xft.dpi: 101
  33. {{ end }}
  34. Xft.autohint: 0
  35. Xft.lcdfilter: lcddefault
  36. Xft.hintstyle: hintfull
  37. Xft.hinting: 1
  38. Xft.antialias: 1
  39. Xft.rgba: rgb
  40. /* ]]] HiDPI */
  41. # vim: fdm=marker ft=xdefaults.go-template