|
| 1 | +# |
| 2 | +# This is sample ~/.simpletrayrc, resembling default configuration. |
| 3 | +# Remember: command line parameters take precedence. |
| 4 | +# |
| 5 | +# Directives introduced in @VERSION_STR@ are marked with "NEW in @VERSION_STR@" |
| 6 | +# |
| 7 | +#################################################################### |
| 8 | +# |
| 9 | +# simpletray understands following directives |
| 10 | +# |
| 11 | +#################################################################### |
| 12 | + |
| 13 | +# background <color> # color can be specified as an HTML hex triplet or |
| 14 | + # as a name from rgb.txt, note that '#' must be quoted |
| 15 | +background "#777777" |
| 16 | + |
| 17 | +# display <display name> # as usual |
| 18 | + |
| 19 | +# geometry <geometry> # tray's geometry in standard X notation; width and |
| 20 | + # height are specified in slot_size multiples |
| 21 | +geometry 1x1+0+0 |
| 22 | + |
| 23 | +# grow_gravity <gravity> # one of N, S, E, W, NW, NE, SW, SE; tray will grow |
| 24 | + # in the direction opposite to one specified by |
| 25 | + # grow_gravity; if horizontal or vertical |
| 26 | + # direction is not specified, tray will not grow in |
| 27 | + # that direction |
| 28 | +grow_gravity NW |
| 29 | + |
| 30 | +# icon_gravity <gravity> # icon placement gravity, one of NW, NE, SW, SE |
| 31 | +icon_gravity NW |
| 32 | + |
| 33 | +# icon_size <int> # specifies dimensions of an icon |
| 34 | +icon_size 24 |
| 35 | + |
| 36 | +# slot_size <w>[x<h>] # specifies width and hight of an icon slot that |
| 37 | + # contains icon; must be larger than icon size; |
| 38 | + # height is set to width if it is omitted; |
| 39 | + # defaults to icon size |
| 40 | +slot_size 32x64 |
| 41 | + |
| 42 | +# kludges kludge[,kludge] # enable specific kludges to work around |
| 43 | + # non-conforming WMs and/or simpletray bugs. |
| 44 | + # NEW in @VERSION_STR@. Argument is a |
| 45 | + # comma-separated list of |
| 46 | + # * fix_window_pos - fix tray window position on |
| 47 | + # erroneous moves by WM |
| 48 | + # * force_icons_size - ignore resize events on all |
| 49 | + # icons; force their size to be equal to |
| 50 | + # icon_size |
| 51 | + # * use_icon_hints - use icon window hints to |
| 52 | + # dtermine icon size |
| 53 | + |
| 54 | +# max_geometry <geometry> # maximal tray dimensions; 0 in width/height means |
| 55 | + # no limit |
| 56 | +max_geometry 0x0 |
| 57 | + |
| 58 | +# no_shrink [<bool>] # disables shrink-back mode |
| 59 | +no_shrink false |
| 60 | + |
| 61 | +# parent_bg [<bool>] # whether to use pseudo-transparency |
| 62 | + # (looks better when reparented into smth like FvwmButtons) |
| 63 | +parent_bg false |
| 64 | + |
| 65 | +# pixmap_bg <path_to_xpm> # use pixmap from specified xpm file for (tiled) background |
| 66 | +# pixmap_bg /home/user/.simpletraybg.xpm |
| 67 | + |
| 68 | + |
| 69 | +# slot_size <int> # specifies size of icon slot, defaults to |
| 70 | + # icon_size NEW in @VERSION_STR@. |
| 71 | + |
| 72 | +# skip_taskbar [<bool>] # hide tray`s window from the taskbar |
| 73 | +skip_taskbar true |
| 74 | + |
| 75 | +# sticky [<bool>] # make a tray`s window sticky across the |
| 76 | + # desktops/pages |
| 77 | +sticky true |
| 78 | + |
| 79 | +# tint_color <color> # set tinting color |
| 80 | +tint_color white |
| 81 | + |
| 82 | +# tint_level <level> # set tinting level; level ranges from 0 (disabled) |
| 83 | + # to 255 |
| 84 | +tint_level 0 |
| 85 | + |
| 86 | +# transparent [<bool>] # whether to use root-transparency (background |
| 87 | + # image must be set with Esetroot or compatible utility) |
| 88 | +transparent false |
| 89 | + |
| 90 | +# vertical [<bool>] # whether to use vertical layout (horisontal layout |
| 91 | + # is used by default) |
| 92 | +vertical false |
| 93 | + |
| 94 | +# window_layer <layer> # set the EWMH-compatible window layer; one of: |
| 95 | + # bottom, normal, top |
| 96 | +window_layer normal |
| 97 | + |
| 98 | +# window_strut <mode> # enable/disable window struts for tray window (to |
| 99 | + # avoid converting of tray window by maximized |
| 100 | + # windows); mode defines to which screen border tray |
| 101 | + # will be attached; it can be either top, bottom, |
| 102 | + # left, right, none or auto (default) |
| 103 | +window_strut auto |
| 104 | + |
| 105 | + |
| 106 | +# xsync [<bool>] # whether to operate on X server synchronously (SLOOOOW) |
| 107 | +xsync false |
| 108 | + |
0 commit comments