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.

57 lines
1.1 KiB

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