1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79
|
# Configuration file for wmclockmon
# empty lines or lines begining with # are ignored
# booleans can take the next values : 0 1 true false yes no on off
# and are case insensitive
# Backlight : boolean
# Default : Off
#
Backlight = On
# Color : string (backlight color when backlight is ON)
# Default : #6ec63b
#
Color =
# StyleDir : string (name of styles directory)
# Default : nothing
#
StyleDir = /usr/local/share/wmclockmon
# Style : string (name of style -- without extension)
# Default : nothing
#
Style =
# H12 : boolean (12 hour clock)
# Default : false
H12 = False
# TimeMode : integer (0: normal clock, 1: internet time, 2: binary clock)
# Default : 0
TimeMode = 0
# Locale : boolean (use current locale or not)
# Default : yes
Locale = Yes
# Command : string (what to do when alarm raises)
# Default : nothing
#
Command = play /home/thomas/documents/sounds/alarm.wav
# MessageCmd : string (what to do when alarm raises and there is a message)
# Default : nothing
#
MessageCmd = xmessage -center
# Blinking enable : boolean
# Default : yes
#
Blink = Yes
# ShowCal : boolean (display calendar at startup / 00:00)
# Default : no
#
ShowCal = yes
# CalAlrms : boolean (look for alarms in calendar for today -- see manpage)
# Default : off
#
CalAlrms = on
# Alarm : string ([on|off@]HH:MM[-#DAY][.MESSAGE])
# Default : nothing
# on|off is the boolean describing the state of the alarm
# @ is the field separator between status and hour - DON'T PUT SPACES
# HH:MM is the time when you want the alarm to be raised
# - is the field separator between time and day - DON'T PUT SPACES
# #DAY is the day of the week (1-7)
# . is the field separator between time or day and the message
# MESSAGE is the message you wantto be displayed (see MessageCmd) when this
# alarm raises
#
# use as many Alarm options as you want alarms
#
Alarm = On@19:55.Local informations
Alarm = On@13:30-7.Sunday fun
Alarm = On@07:00
|