├── .gitignore ├── 3BED9D99-EA16-421A-8768-2F55DB739E7C.png ├── 40594F76-79F3-4B3C-87F6-D4DCAC8F2B98.png ├── 6FF18B2D-18DF-4092-989F-EA182E27660D.png ├── MountainNotifier ├── LICENSE.txt └── MountainNotifier ├── README.md ├── docs ├── changelog.html ├── changelog.txt ├── favicon.png ├── help.html ├── help.txt ├── markdown_simonic.css ├── new_alarm.png ├── new_autotimer.png ├── new_timer.png ├── recent.png ├── repeat_timer.png ├── screenshot.png ├── snooze.png └── timer_done.png ├── icon.png ├── info.plist ├── packal ├── carlosnz.eggtimer4.pub └── package.xml ├── resources ├── icon.icns ├── icon_alarm.icns ├── icon_alarm.png ├── icon_alarm_loop.png ├── icon_alarm_snooze.png ├── icon_hal.png ├── icon_loop.png ├── icon_nuke.png ├── icon_repeat.png ├── icon_snooze.png └── icon_wtf.jpg ├── scripts ├── first_install.sh ├── first_run_check.sh ├── includes.sh ├── input_list.sh ├── input_new_alarm.sh ├── input_new_auto.sh ├── input_new_timer.sh ├── input_other_options.sh ├── input_recent.sh ├── input_repeat.sh ├── input_snooze.sh ├── login_check.workflow │ └── Contents │ │ ├── QuickLook │ │ ├── Preview.png │ │ └── Thumbnail.png │ │ └── document.wflow ├── login_script.sh ├── notify_functions.sh ├── process_alarm.sh ├── process_delete.sh ├── process_list.sh ├── process_recent.sh ├── process_repeat.sh ├── process_snooze.sh ├── process_stop.sh ├── process_timer.sh ├── time_remaining_routine.sh ├── timer.sh ├── timer_alarm.sh ├── timer_auto.sh └── timer_resurrect.sh └── sounds ├── alarm_done.mp3 ├── error.mp3 └── warning.mp3 /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | -------------------------------------------------------------------------------- /3BED9D99-EA16-421A-8768-2F55DB739E7C.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stgarf/EggTimer4/HEAD/3BED9D99-EA16-421A-8768-2F55DB739E7C.png -------------------------------------------------------------------------------- /40594F76-79F3-4B3C-87F6-D4DCAC8F2B98.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stgarf/EggTimer4/HEAD/40594F76-79F3-4B3C-87F6-D4DCAC8F2B98.png -------------------------------------------------------------------------------- /6FF18B2D-18DF-4092-989F-EA182E27660D.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stgarf/EggTimer4/HEAD/6FF18B2D-18DF-4092-989F-EA182E27660D.png -------------------------------------------------------------------------------- /MountainNotifier/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stgarf/EggTimer4/HEAD/MountainNotifier/LICENSE.txt -------------------------------------------------------------------------------- /MountainNotifier/MountainNotifier: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stgarf/EggTimer4/HEAD/MountainNotifier/MountainNotifier -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stgarf/EggTimer4/HEAD/README.md -------------------------------------------------------------------------------- /docs/changelog.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stgarf/EggTimer4/HEAD/docs/changelog.html -------------------------------------------------------------------------------- /docs/changelog.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stgarf/EggTimer4/HEAD/docs/changelog.txt -------------------------------------------------------------------------------- /docs/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stgarf/EggTimer4/HEAD/docs/favicon.png -------------------------------------------------------------------------------- /docs/help.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stgarf/EggTimer4/HEAD/docs/help.html -------------------------------------------------------------------------------- /docs/help.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stgarf/EggTimer4/HEAD/docs/help.txt -------------------------------------------------------------------------------- /docs/markdown_simonic.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stgarf/EggTimer4/HEAD/docs/markdown_simonic.css -------------------------------------------------------------------------------- /docs/new_alarm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stgarf/EggTimer4/HEAD/docs/new_alarm.png -------------------------------------------------------------------------------- /docs/new_autotimer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stgarf/EggTimer4/HEAD/docs/new_autotimer.png -------------------------------------------------------------------------------- /docs/new_timer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stgarf/EggTimer4/HEAD/docs/new_timer.png -------------------------------------------------------------------------------- /docs/recent.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stgarf/EggTimer4/HEAD/docs/recent.png -------------------------------------------------------------------------------- /docs/repeat_timer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stgarf/EggTimer4/HEAD/docs/repeat_timer.png -------------------------------------------------------------------------------- /docs/screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stgarf/EggTimer4/HEAD/docs/screenshot.png -------------------------------------------------------------------------------- /docs/snooze.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stgarf/EggTimer4/HEAD/docs/snooze.png -------------------------------------------------------------------------------- /docs/timer_done.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stgarf/EggTimer4/HEAD/docs/timer_done.png -------------------------------------------------------------------------------- /icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stgarf/EggTimer4/HEAD/icon.png -------------------------------------------------------------------------------- /info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stgarf/EggTimer4/HEAD/info.plist -------------------------------------------------------------------------------- /packal/carlosnz.eggtimer4.pub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stgarf/EggTimer4/HEAD/packal/carlosnz.eggtimer4.pub -------------------------------------------------------------------------------- /packal/package.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stgarf/EggTimer4/HEAD/packal/package.xml -------------------------------------------------------------------------------- /resources/icon.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stgarf/EggTimer4/HEAD/resources/icon.icns -------------------------------------------------------------------------------- /resources/icon_alarm.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stgarf/EggTimer4/HEAD/resources/icon_alarm.icns -------------------------------------------------------------------------------- /resources/icon_alarm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stgarf/EggTimer4/HEAD/resources/icon_alarm.png -------------------------------------------------------------------------------- /resources/icon_alarm_loop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stgarf/EggTimer4/HEAD/resources/icon_alarm_loop.png -------------------------------------------------------------------------------- /resources/icon_alarm_snooze.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stgarf/EggTimer4/HEAD/resources/icon_alarm_snooze.png -------------------------------------------------------------------------------- /resources/icon_hal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stgarf/EggTimer4/HEAD/resources/icon_hal.png -------------------------------------------------------------------------------- /resources/icon_loop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stgarf/EggTimer4/HEAD/resources/icon_loop.png -------------------------------------------------------------------------------- /resources/icon_nuke.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stgarf/EggTimer4/HEAD/resources/icon_nuke.png -------------------------------------------------------------------------------- /resources/icon_repeat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stgarf/EggTimer4/HEAD/resources/icon_repeat.png -------------------------------------------------------------------------------- /resources/icon_snooze.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stgarf/EggTimer4/HEAD/resources/icon_snooze.png -------------------------------------------------------------------------------- /resources/icon_wtf.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stgarf/EggTimer4/HEAD/resources/icon_wtf.jpg -------------------------------------------------------------------------------- /scripts/first_install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stgarf/EggTimer4/HEAD/scripts/first_install.sh -------------------------------------------------------------------------------- /scripts/first_run_check.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stgarf/EggTimer4/HEAD/scripts/first_run_check.sh -------------------------------------------------------------------------------- /scripts/includes.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stgarf/EggTimer4/HEAD/scripts/includes.sh -------------------------------------------------------------------------------- /scripts/input_list.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stgarf/EggTimer4/HEAD/scripts/input_list.sh -------------------------------------------------------------------------------- /scripts/input_new_alarm.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stgarf/EggTimer4/HEAD/scripts/input_new_alarm.sh -------------------------------------------------------------------------------- /scripts/input_new_auto.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stgarf/EggTimer4/HEAD/scripts/input_new_auto.sh -------------------------------------------------------------------------------- /scripts/input_new_timer.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stgarf/EggTimer4/HEAD/scripts/input_new_timer.sh -------------------------------------------------------------------------------- /scripts/input_other_options.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stgarf/EggTimer4/HEAD/scripts/input_other_options.sh -------------------------------------------------------------------------------- /scripts/input_recent.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stgarf/EggTimer4/HEAD/scripts/input_recent.sh -------------------------------------------------------------------------------- /scripts/input_repeat.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stgarf/EggTimer4/HEAD/scripts/input_repeat.sh -------------------------------------------------------------------------------- /scripts/input_snooze.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stgarf/EggTimer4/HEAD/scripts/input_snooze.sh -------------------------------------------------------------------------------- /scripts/login_check.workflow/Contents/QuickLook/Preview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stgarf/EggTimer4/HEAD/scripts/login_check.workflow/Contents/QuickLook/Preview.png -------------------------------------------------------------------------------- /scripts/login_check.workflow/Contents/QuickLook/Thumbnail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stgarf/EggTimer4/HEAD/scripts/login_check.workflow/Contents/QuickLook/Thumbnail.png -------------------------------------------------------------------------------- /scripts/login_check.workflow/Contents/document.wflow: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stgarf/EggTimer4/HEAD/scripts/login_check.workflow/Contents/document.wflow -------------------------------------------------------------------------------- /scripts/login_script.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stgarf/EggTimer4/HEAD/scripts/login_script.sh -------------------------------------------------------------------------------- /scripts/notify_functions.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stgarf/EggTimer4/HEAD/scripts/notify_functions.sh -------------------------------------------------------------------------------- /scripts/process_alarm.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stgarf/EggTimer4/HEAD/scripts/process_alarm.sh -------------------------------------------------------------------------------- /scripts/process_delete.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stgarf/EggTimer4/HEAD/scripts/process_delete.sh -------------------------------------------------------------------------------- /scripts/process_list.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stgarf/EggTimer4/HEAD/scripts/process_list.sh -------------------------------------------------------------------------------- /scripts/process_recent.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stgarf/EggTimer4/HEAD/scripts/process_recent.sh -------------------------------------------------------------------------------- /scripts/process_repeat.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stgarf/EggTimer4/HEAD/scripts/process_repeat.sh -------------------------------------------------------------------------------- /scripts/process_snooze.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stgarf/EggTimer4/HEAD/scripts/process_snooze.sh -------------------------------------------------------------------------------- /scripts/process_stop.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stgarf/EggTimer4/HEAD/scripts/process_stop.sh -------------------------------------------------------------------------------- /scripts/process_timer.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stgarf/EggTimer4/HEAD/scripts/process_timer.sh -------------------------------------------------------------------------------- /scripts/time_remaining_routine.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stgarf/EggTimer4/HEAD/scripts/time_remaining_routine.sh -------------------------------------------------------------------------------- /scripts/timer.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stgarf/EggTimer4/HEAD/scripts/timer.sh -------------------------------------------------------------------------------- /scripts/timer_alarm.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stgarf/EggTimer4/HEAD/scripts/timer_alarm.sh -------------------------------------------------------------------------------- /scripts/timer_auto.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stgarf/EggTimer4/HEAD/scripts/timer_auto.sh -------------------------------------------------------------------------------- /scripts/timer_resurrect.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stgarf/EggTimer4/HEAD/scripts/timer_resurrect.sh -------------------------------------------------------------------------------- /sounds/alarm_done.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stgarf/EggTimer4/HEAD/sounds/alarm_done.mp3 -------------------------------------------------------------------------------- /sounds/error.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stgarf/EggTimer4/HEAD/sounds/error.mp3 -------------------------------------------------------------------------------- /sounds/warning.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stgarf/EggTimer4/HEAD/sounds/warning.mp3 --------------------------------------------------------------------------------