Advertisement
Guest User

Untitled

a guest
Apr 23rd, 2018
78
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.41 KB | None | 0 0
  1. !
  2. ! .Xresources file
  3. ! Man pages: xrdb, Xsession
  4. !
  5. ! --------------------------------------------
  6. ! Note that $HOME/.Xdefaults is a relic from
  7. ! X Version 10 (and X11R1) days, before
  8. ! app-defaults files were implemented.
  9. ! It has been deprecated for over ten years
  10. ! .Xresources should be used instead.
  11. ! --------------------------------------------
  12.  
  13. !---- Font rendering {
  14. ! ref: https://wiki.archlinux.org/index.php/Font_Configuration
  15. ! ref: http://www.keithp.com/~keithp/render/Xft.tutorial
  16. Xft.antialias: 1
  17. Xft.autohint: true
  18. Xft.hinting: 1
  19. Xft.hintystyle: hintfull
  20. ! Xft.hintstyle: hintslight
  21. ! Xft.dpi: 96
  22. ! Xft.dpi: 120
  23. ! TODO: dpi should be set per system....
  24. Xft.dpi: 96
  25. rofi.dpi: 96
  26. ! rofi.font: DejaVu Sans Mono
  27. Xft.rgba: rgb
  28. !Xft.embolden: false
  29. Xft.lcdfilter: lcddefault
  30.  
  31. !---- rofi {
  32. rofi.hide-scrollbar: true
  33. rofi.bw: 4
  34. rofi.lines: 30
  35. rofi.width: 75
  36. rofi.padding: 8
  37. rofi.kb-primary-paste: Control+y,Shift+Insert
  38. rofi.kb-secondary-paste: Control+y,Insert
  39. rofi.kb-page-prev: Alt+v,Page_Up
  40. rofi.kb-page-next: Control+v,Page_Down
  41. ! rofi.fullscreen: true
  42.  
  43. !---- X Cursor theme {
  44. Xcursor.theme: DMZ-White
  45. Xcursor.size: 16
  46.  
  47. !---- URxvt - General settings {
  48. URxvt*fading: 0
  49. URxvt*:borderLess: true
  50. URxvt*internalBorder: 7
  51.  
  52. URxvt*cursorBlink: false
  53. URxvt*font: xft:PragmataPro:size=11
  54. ! NOTE letter spacing is specific to pragmata pro here!
  55. URxvt.letterSpace: 0
  56. URxvt*jumpScroll: true
  57. URxvt*scrollBar: off
  58. URxvt*saveLines: 20000
  59. URxvt*scrollWithBuffer: true
  60. URxvt*scrollTtyOutput: false
  61. URxvt*scrollTtyKeypress: true
  62. URxvt*urgentOnBell: true
  63. URxvt*visualBell: false
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement