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.

59 lines
1.2 KiB

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