Make AddMouseRegion's index unsigned
[dockapps.git] / wmail / wmailrc-sample
blob16c41362c1bfa5b3ab385565d29521a10a23cee4
1 #-*-shell-script-*-############################################################
3 # .wmailrc - wmail v2.3 configuration file
4 # note: cmd-line options always overide the settings in this file unless you
5 # force runtime reconfiguration by clicking on the docklets display area
7 # Format:
8 # identifier '=' value
9 # - identifiers are not case-sensitive
10 # - each identifier expects a typed value to be assigned with
11 # - typed value means either "string", boolean-switch (yes,on,true|no,off,false), some enum or int number
12 # - string values must be enclosed with `"'-characters (quoting)
13 # - string values supportes escape-sequences like \n,\r,\b,\t and decimal numbers \XXX (except \0)
14 # - # comments (only at beginning of lines)
17 # specify X display to open (not re-configurable during run-time)
18 # string value, default: ""
19 # Window.Display = "localhost:0.0"
21 # turn on non-shaped window-mode
22 # boolean value, default: No
23 # Window.NonShaped = Yes
25 # command to execute on button-click
26 # string value, default: "xterm -e mail"
27 Window.Button.Command = "wterm -fg white -bg black -T Pine -e pine &"
29 # specify your mailbox (if not, the $MAIL evironment-variable is used)
30 # string value, default: unset
31 # Mail.MailBox = "/var/spool/mail/YOUR_LOGIN"
33 # what file to use to store the cksums which help identify the mails
34 # string value, default: "" (causes fallback to $HOME/.wmail-cksums)
35 # Mail.ChecksumFile = "/home/YOUR_LOGIN/.wmail-cksums"
37 # enable wmail to ticker (and count) only new (unread) mails
38 # boolean value, default: No
39 Mail.ShowOnlyNew = Yes
41 # mail-check interval in seconds
42 # integer value, default: 1
43 Mail.CheckInterval = 5
45 # setup the ticker-line: allowed values are: Address | NickName | FamilyName
46 # enum value, default: Address
47 Ticker.Mode = FamilyName
49 # set the ticker-frame-rate per seconds
50 # integer value, default: 60
51 # Ticker.Frames = 100
53 # like to use a real X11 font instead of the buildin ?
54 # Note the buildin font does not support all possible latin1 characters, so
55 # if you would like to see them you must make use of this.
56 # Ticker.X11Font = "-*-helvetica-medium-r-*-*-16-*-*-*-*-*-*-*"
58 # command to execute when receiving new mail (for example "/usr/bin/play somefile.wav &")
59 # string value, default: unset
60 # Mail.OnNew.Command = "/usr/bin/play /hda1/win98/media/notify.wav &"
62 # sender-skip-list, use this command multiple times to skip more then one sender-name
63 # string value, default: unset
64 Mail.SkipSender = "MAILER-DAEMON"
66 # force wmail to display and count only those mails who have their Status-field
67 # not set to RO (old read mail)
68 # this is useful if you do not remove your mails from the mbox after reading them
69 # default: Off
70 # Mail.UseStatusField = On
72 # supply the content of the status field that markes you email as read
73 # (The given value is substring-matched)
74 # default: "O"
75 # Mail.ReadStatus = "ro"
77 # color definitions follow: note that you can specify either
78 # - a X color-name like "Grey", "White", "light green" etc. or
79 # - a rgb-value using a hex-string like "#RRGGBB"
82 # color of the upper symbols
83 # string value, default: "#20B2AA"
84 # Colors.Symbols = "yellow"
86 # color of the ticker
87 # string value, default: "#D3D3D3"
88 # Colors.Font = "light grey"
90 # color of the dockapps background
91 # string value, default: "#282828"
92 # Colors.Backlight = "dark slate grey"
94 # color of inactive symbols
95 # string value, default: "black"
96 # Colors.OffLight = "#282828"
98 # color of the outer frame (using it will force non-shaped window mode)
99 # string value, default: unset
100 # Colors.NonShapedFrame = "grey"
103 ### some color schemes :)
105 #############################
106 # wmcpuload like colors
108 # Colors.Symbols = "#131313"
109 # Colors.Font = "black"
110 # Colors.Backlight = "#6e766e"
111 # Colors.OffLight = "#5e665a"
113 #############################
114 # dark blue
116 # Colors.Symbols = "Yellow"
117 # Colors.Font = "White"
118 # Colors.Backlight = "DarkBlue"
119 # Colors.OffLight = "Black"