Advertisement
Guest User

xfdesktop 4.6.1 README

a guest
Jun 19th, 2012
289
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.60 KB | None | 0 0
  1. README for xfdesktop version 4.5
  2. ================================
  3.  
  4. WHAT IS IT?
  5. ~~~~~~~~~~~
  6.  
  7. Xfdesktop is a desktop manager for the Xfce Desktop Environment. Desktop
  8. in this respect means the root window (or, rather, a window that sits on top
  9. of the root window). The manager handles the following tasks:
  10. - background image / color
  11. - root menu, window list
  12. - minimized app icons
  13. - file icons on the desktop (using Thunar libs)
  14.  
  15.  
  16. MINIMUM REQUIREMENTS
  17. ~~~~~~~~~~~~~~~~~~~~
  18.  
  19. * intltool 0.34
  20. * GTK+ 2.10.0
  21. * libxfce4util 4.5.0svn-r26490
  22. * libxfcegui4 4.5.2svn-r27035
  23. * libwnck 2.12.0
  24. * libxfce4menu 0.1.0svn-r26507 (optional; required for apps menu)
  25. * libthunar-vfs 0.8.0 (optional; required for file icons)
  26. * dbus-glib 0.34 (optional; required for file icons)
  27. * libexo 0.3.2 (optional)
  28.  
  29.  
  30. HIDDEN CUSTOMISATIONS
  31. ~~~~~~~~~~~~~~~~~~~~~
  32.  
  33. If you're using the icon view, and would like to change how the text looks,
  34. you have three things you can change: the opacity (transparency) of the
  35. rounded text background, the color of the rounded text background, and the
  36. color of the text itself.
  37.  
  38. You'd want to add something like this to your ~/.gtkrc-2.0 file:
  39.  
  40. style "xfdesktop-icon-view" {
  41. XfdesktopIconView::label-alpha = 75
  42. XfdesktopIconView::selected-label-alpha = 100
  43. XfdesktopIconVIew::ellipsize-icon-labels = 1
  44.  
  45. XfdesktopIconView::shadow-x-offset = 1
  46. XfdesktopIconView::shadow-y-offset = 1
  47. XfdesktopIconView::shadow-color = "#ff0000"
  48. XfdesktopIconView::selected-shadow-x-offset = 2
  49. XfdesktopIconView::selected-shadow-y-offset = 2
  50. XfdesktopIconView::selected-shadow-color = "#00ff00"
  51.  
  52. XfdesktopIconVIew::cell-spacing = 6
  53. XfdesktopIconView::cell-padding = 6
  54. XfdesktopIconView::cell-text-width-proportion = 2.5
  55.  
  56. base[NORMAL] = "#00ff00"
  57. base[SELECTED] = "#5050ff"
  58. base[ACTIVE] = "#0000ff"
  59.  
  60. fg[NORMAL] = "#ff0000"
  61. fg[SELECTED] = "#ff0000"
  62. fg[ACTIVE] = "#ff0000"
  63. }
  64. widget_class "*XfdesktopIconView*" style "xfdesktop-icon-view"
  65.  
  66. The first three entries set the opacity of the rounded text background
  67. (allowed values are from 0 (totally transparent) to 255 (totally opaque),
  68. and whether or not unselected icons get their labels ellipsized
  69. (truncated) to fit on one line. (The 'selected-' version controls the
  70. opacity of icons that have been selected with the mouse.)
  71.  
  72. The second six entries can be used to enable a text shadow to be painted
  73. with the icon labels. The offsets are in pixels. Setting them to 0 (the
  74. defaults) will disable the shadows entirely. Again, the 'selected-'
  75. versions apply to icons that have been selected with the mouse.
  76.  
  77. The third four entries set spacing and sizing for individual icons on
  78. the grid. The 'cell-spacing' property specifies the spacing between each
  79. 'cell' in the grid of icons. The 'cell-padding' property sets extra
  80. padding placed around each icon+text. The units for these two are in
  81. pixels. The 'cell-text-width-proportion' property specifies the maximum
  82. width of the text label underneat the icon, as a multiplier of the icon
  83. width (so for 30px icons, '2.5' would leave a 75px wide area underneath
  84. for the text).
  85.  
  86. The fourth three entries set the color of the rounded text background.
  87. * NORMAL sets the color for the regular, unselected state.
  88. * SELECTED sets the color for when the icon is selected, and the desktop has
  89. keyboard/mouse focus.
  90. * ACTIVE sets the color for when the icon is selected, but the desktop does
  91. not have keyboard/mouse focus.
  92.  
  93. The final three entries set the color of the label text. See above for the
  94. differences between NORMAL, SELECTED, and ACTIVE.
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement