<?xml version="1.0" encoding="UTF-8" ?>
<EventGhost Version="1700" Guid="{370AC8F5-96DE-46A2-BF8F-7B7883DE34E1}" Time="1437988955.05">
    <Autostart Name="Autostart">
        <Action Name="Determine weekday" Enabled="False">
            EventGhost.PythonScript(u'from datetime import date\nimport calendar\nmy_date = date.today()\neg.globals.weekday = calendar.day_name[my_date.weekday()]\nprint "Today is "+eg.globals.weekday\neg.TriggerEvent(eg.globals.weekday)')
        </Action>
        <Action Name="Activate the above if you want it run with eg start">
            EventGhost.Comment()
        </Action>
    </Autostart>
    <Macro Name="Trigger event triggered manually by F7" Expanded="True">
        <Action Name="Determine weekday">
            EventGhost.PythonScript(u'from datetime import date\nimport calendar\nmy_date = date.today()\neg.globals.weekday = calendar.day_name[my_date.weekday()]\nprint "Today is "+eg.globals.weekday\neg.TriggerEvent(eg.globals.weekday)')
        </Action>
        <Action Name="Only have it run if not run before in the autostart">
            EventGhost.Comment()
        </Action>
    </Macro>
    <Folder Name="Weekday profiles" Expanded="True">
        <Macro Name="Monday" Expanded="True">
            <Event Name="Main.Monday" />
            <Action Name="Your Action for Monday">
                EventGhost.Comment()
            </Action>
            <Action Name="You might need to change the Main.Monday event to your local word for Monday">
                EventGhost.Comment()
            </Action>
        </Macro>
        <Macro Name="Thuesday" Expanded="True">
            <Event Name="Main.Thuesday" />
            <Action Name="Your Action">
                EventGhost.Comment()
            </Action>
        </Macro>
        <Macro Name="Wednesday" Expanded="True">
            <Event Name="Main.Wednesday" />
            <Action Name="Your Action">
                EventGhost.Comment()
            </Action>
        </Macro>
        <Macro Name="Comment" Expanded="True">
            <Action Name="Add the rest of the week here">
                EventGhost.Comment()
            </Action>
        </Macro>
    </Folder>
</EventGhost>
