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.

58 lines
1.1 KiB

6 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. {{ 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. ! urxvt*blurRadius: 10
  19. /* ]]] transparency */
  20. /* scrollBar [[[ */
  21. URxvt.scrollBar: false
  22. ! URxvt.scrollBar: true
  23. ! URxvt*scrollBar_right: true
  24. /* ]]] scrollBar */
  25. /* Clickable URLs [[[ */
  26. URxvt.perl-ext-common: default,matcher
  27. URxvt.url-launcher: /usr/bin/xdg-open
  28. URxvt.matcher.button: 1
  29. /* ]]] Clickable URLs */
  30. /* HiDPI [[[ */
  31. {{ if eq .chezmoi.fullHostname "x1-carbon" }}
  32. Xft.dpi: 210
  33. {{ else }}
  34. Xft.dpi: 101
  35. {{ end }}
  36. Xft.autohint: 0
  37. Xft.lcdfilter: lcddefault
  38. Xft.hintstyle: hintfull
  39. Xft.hinting: 1
  40. Xft.antialias: 1
  41. Xft.rgba: rgb
  42. /* ]]] HiDPI */
  43. # vim: fdm=marker ft=xdefaults.go-template