Advertisement
kellex

stalonetray conf0

Apr 6th, 2014
133
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Bash 5.63 KB | None | 0 0
  1. # vim:filetype=config:tw=80:et
  2. #
  3. # This is sample ~/.stalonetrayrc, resembling default configuration.
  4. # Remember: command line parameters take precedence.
  5. #
  6. # Directives introduced in 0.8 are marked with "NEW in 0.8"
  7. #
  8. ####################################################################
  9. #
  10. # stalonetray understands following directives
  11. #
  12. ####################################################################
  13.  
  14. # background <color>         # color can be specified as an HTML hex triplet or
  15.                              # as a name from rgb.txt, note that '#' must be quoted
  16. background "#000000"
  17.  
  18. # decorations <decspec>      # set trays window decorations; possible values for
  19.                              # decspec are: all, title, border, none
  20. decorations none
  21.  
  22. # display <display name>     # as usual
  23.  
  24. # dockapp_mode <mode>        # set dockapp mode, which can be either simple (for
  25.                              # e.g. OpenBox, wmaker for WindowMaker, or none
  26.                              # (default). NEW in 0.8.
  27. dockapp_mode simple
  28.  
  29. # fuzzy_edges [<level>]      # enable fuzzy edges and set fuzziness level. level
  30.                              # can be from 0 (disabled) to 3; this setting works
  31.                              # with tinting and/or transparent and/or pixmap
  32.                              # backgrounds
  33. fuzzy_edges 0
  34.  
  35. # geometry <geometry>        # tray's geometry in standard X notation; width and
  36.                              # height are specified in slot_size multiples
  37. geometry 1x1+0+0
  38.  
  39. # grow_gravity <gravity>     # one of N, S, E, W, NW, NE, SW, SE; tray will grow
  40.                              # in the direction opposite to one specified by
  41.                              # grow_gravity; if horizontal or vertical
  42.                              # direction is not specified, tray will not grow in
  43.                              # that direction
  44. grow_gravity E
  45.  
  46. # icon_gravity <gravity>     # icon placement gravity, one of NW, NE, SW, SE
  47. icon_gravity NE
  48.  
  49. # icon_size <int>            # specifies dimensions of typical icon slot
  50. icon_size 24
  51.  
  52. # log_level <level>          # controls the amount of logging output, level can
  53.                              # be err (default), info, or trace (enabled only
  54.                              # when stalonetray configured with --enable-debug)
  55.                              # NEW in 0.8.
  56. log_level err
  57.  
  58. # kludges kludge[,kludge]    # enable specific kludges to work around
  59.                              # non-conforming WMs and/or stalonetray bugs.
  60.                              # NEW in 0.8. Argument is a
  61.                              # comma-separated list of
  62.                              # * fix_window_pos - fix tray window position on
  63.                              #     erroneous moves by WM
  64.                              # * force_icon_size - ignore resize events on all
  65.                              #     icons; force their size to be equal to
  66.                              #     icon_size
  67.                              # * use_icon_hints - use icon window hints to
  68.                              #     dtermine icon size
  69.  
  70. # max_geometry <geometry>    # maximal tray dimensions; 0 in width/height means
  71.                              # no limit
  72. max_geometry 0x24
  73.  
  74. # no_shrink [<bool>]         # disables shrink-back mode
  75. no_shrink false
  76.  
  77. # parent_bg [<bool>]         # whether to use pseudo-transparency
  78.                              # (looks better when reparented into smth like FvwmButtons)
  79. parent_bg false
  80.  
  81. # pixmap_bg <path_to_xpm>    # use pixmap from specified xpm file for (tiled) background
  82. # pixmap_bg /home/user/.stalonetraybg.xpm
  83.  
  84. # scrollbars <mode>          # enable/disable scrollbars; mode is either
  85.                              # vertical, horizontal, all or none (default)
  86.                              # NEW in 0.8.
  87. scrollbars none
  88.  
  89. # scrollbars-size <size>     # scrollbars step in pixels; default is slot_size / 4
  90. # scrollbars-step 8
  91.  
  92. # scrollbars-step <step>     # scrollbars step in pixels; default is slot_size / 2
  93. # scrollbars-step 32
  94.  
  95. # slot_size <int>            # specifies size of icon slot, defaults to
  96.                              # icon_size NEW in 0.8.
  97.  
  98. # skip_taskbar [<bool>]      # hide tray`s window from the taskbar
  99. skip_taskbar true
  100.  
  101. # sticky [<bool>]            # make a tray`s window sticky across the
  102.                              # desktops/pages
  103. sticky true
  104.  
  105. # tint_color <color>         # set tinting color
  106. tint_color white
  107.  
  108. # tint_level <level>         # set tinting level; level ranges from 0 (disabled)
  109.                              # to 255
  110. tint_level 0
  111.  
  112. # transparent [<bool>]       # whether to use root-transparency (background
  113.                              # image must be set with Esetroot or compatible utility)
  114. transparent true
  115.  
  116. # vertical [<bool>]          # whether to use vertical layout (horisontal layout
  117.                              # is used by default)
  118. vertical false
  119.  
  120. # window_layer <layer>       # set the EWMH-compatible window layer; one of:
  121.                              # bootom, normal, top
  122. window_layer bottom
  123.  
  124. # window_strut <mode>        # enable/disable window struts for tray window (to
  125.                              # avoid converting of tray window by maximized
  126.                              # windows); mode defines to which screen border tray
  127.                              # will be attached; it can be either top, bottom,
  128.                              # left, right, none or auto (default)
  129. window_strut none
  130.  
  131. # window_type <type>         # set the EWMH-compatible window type; one of:
  132.                              # desktop, dock, normal, toolbar, utility
  133. window_type dock
  134.  
  135. # xsync [<bool>]             # whether to operate on X server synchronously (SLOOOOW)
  136. xsync false
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement