Guest User

Untitled

a guest
Apr 24th, 2018
89
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.52 KB | None | 0 0
  1. ========
  2. VL-Light
  3. ========
  4.  
  5. SLIM
  6. ----
  7.  
  8. Adding wm's in vl-light is not as straight forward as doing it in vl-std,
  9. because vl-light uses slim as Display Manager.
  10.  
  11. vi /etc/slim.conf
  12.  
  13. change
  14.  
  15. sessions jwm,fluxbox
  16.  
  17.  
  18.  
  19. sessions ratpoison,jwm,fluxbox
  20.  
  21. :wq
  22.  
  23. now you should tweak your ~/.xinitrc
  24.  
  25. vi ~/.xinitrc
  26.  
  27. if [ "$1" = jwm ];then
  28. exec /usr/bin/startjwm
  29. elif [ "$1" = fluxbox ];then
  30. exec /usr/bin/startfluxbox
  31. elif [ "$1" = ratpoison ];then #Add this line
  32. exec /usr/bin/ratpoison #Add this line
  33. else
  34. exec /usr/bin/ratpoison #change this one
  35. fi
  36.  
  37. No firefox
  38. ----------
  39.  
  40. download ff lastest build
  41. tar xvf firefox.....
  42. cd firefox
  43. mv plugins plugins2
  44. ln -s /usr/lib/mozilla/plugins/
  45.  
  46. Fonts
  47. -----
  48.  
  49. Default font is UGLY
  50.  
  51. install font-adobe-100dpi
  52. install font-adobe-75dpi
  53. install font-adobe-utopia-100dpi
  54. install font-adobe-utopia-75dpi
  55. install font-adobe-utopia-type1
  56. dejavu-ttf
  57.  
  58. urxvt
  59. -----
  60.  
  61. urxvt does not work due to fonts issue.
  62.  
  63. you just have to remove all
  64.  
  65. urxvt*
  66.  
  67. lines
  68.  
  69. Full urxvt power:
  70.  
  71. URxvt*underlineURLs: true
  72. URxvt.intensityStyles: true
  73. URxvt.scrollBar: false
  74. URxvt.pointerBlank: true
  75. URxvt.internalBorder: 0
  76. URxvt.externalBorder: 0
  77. URxvt*font: 10x20
  78. URxvt*boldFont: 10x20
  79. URxvt*reverseVideo: true
  80. URxvt*color12: #6661ee
  81. URxvt.keysym.M-u: perl:mark-yank-urls:activate_mark_mode
  82. URxvt.underlineURLs: true
  83. URxvt.perl-lib: /home/kidd/.urxvt/
  84. URxvt.perl-ext: selection,mark-yank-urls
  85. URxvt.urlLauncher: firefox
Add Comment
Please, Sign In to add comment