├── .github └── workflows │ └── documentation.yml ├── LICENSE ├── README.md ├── lib ├── __init__.py ├── cfgapp.py ├── configurator │ ├── __init__.py │ ├── defaults.py │ ├── reader.py │ └── writer.py ├── extra │ ├── __init__.py │ ├── _template.py │ ├── c_battery_charging_linux.py │ ├── c_battery_charging_win32.py │ ├── c_battery_low_linux.py │ ├── c_battery_low_win32.py │ ├── c_removabledrive_linux.py │ ├── c_removabledrive_win32.py │ ├── c_session_locked_win32.py │ ├── c_sysload_linux.py │ ├── c_sysload_win32.py │ ├── e_session_lock_linux.py │ ├── e_session_unlock_linux.py │ ├── i18n │ │ ├── _template_de.py │ │ ├── _template_en.py │ │ ├── _template_fr.py │ │ ├── _template_it.py │ │ ├── c_battery_charging_linux_de.py │ │ ├── c_battery_charging_linux_en.py │ │ ├── c_battery_charging_linux_fr.py │ │ ├── c_battery_charging_linux_it.py │ │ ├── c_battery_charging_win32_de.py │ │ ├── c_battery_charging_win32_en.py │ │ ├── c_battery_charging_win32_fr.py │ │ ├── c_battery_charging_win32_it.py │ │ ├── c_battery_low_linux_de.py │ │ ├── c_battery_low_linux_en.py │ │ ├── c_battery_low_linux_fr.py │ │ ├── c_battery_low_linux_it.py │ │ ├── c_battery_low_win32_de.py │ │ ├── c_battery_low_win32_en.py │ │ ├── c_battery_low_win32_fr.py │ │ ├── c_battery_low_win32_it.py │ │ ├── c_removabledrive_linux_de.py │ │ ├── c_removabledrive_linux_en.py │ │ ├── c_removabledrive_linux_fr.py │ │ ├── c_removabledrive_linux_it.py │ │ ├── c_removabledrive_win32_de.py │ │ ├── c_removabledrive_win32_en.py │ │ ├── c_removabledrive_win32_fr.py │ │ ├── c_removabledrive_win32_it.py │ │ ├── c_session_locked_win32_de.py │ │ ├── c_session_locked_win32_en.py │ │ ├── c_session_locked_win32_fr.py │ │ ├── c_session_locked_win32_it.py │ │ ├── c_sysload_linux_de.py │ │ ├── c_sysload_linux_en.py │ │ ├── c_sysload_linux_fr.py │ │ ├── c_sysload_linux_it.py │ │ ├── c_sysload_win32_de.py │ │ ├── c_sysload_win32_en.py │ │ ├── c_sysload_win32_fr.py │ │ ├── c_sysload_win32_it.py │ │ ├── e_session_lock_linux_de.py │ │ ├── e_session_lock_linux_en.py │ │ ├── e_session_lock_linux_fr.py │ │ ├── e_session_lock_linux_it.py │ │ ├── e_session_unlock_linux_de.py │ │ ├── e_session_unlock_linux_en.py │ │ ├── e_session_unlock_linux_fr.py │ │ ├── e_session_unlock_linux_it.py │ │ ├── extra_locale.py │ │ ├── i18n.txt │ │ ├── t_hibernate_de.py │ │ ├── t_hibernate_en.py │ │ ├── t_hibernate_fr.py │ │ ├── t_hibernate_it.py │ │ ├── t_locksession_de.py │ │ ├── t_locksession_en.py │ │ ├── t_locksession_fr.py │ │ ├── t_locksession_it.py │ │ ├── t_logoff_de.py │ │ ├── t_logoff_en.py │ │ ├── t_logoff_fr.py │ │ ├── t_logoff_it.py │ │ ├── t_reboot_de.py │ │ ├── t_reboot_en.py │ │ ├── t_reboot_fr.py │ │ ├── t_reboot_it.py │ │ ├── t_shutdown_de.py │ │ ├── t_shutdown_en.py │ │ ├── t_shutdown_fr.py │ │ └── t_shutdown_it.py │ ├── t_hibernate.py │ ├── t_locksession.py │ ├── t_logoff.py │ ├── t_reboot.py │ └── t_shutdown.py ├── forms │ ├── __init__.py │ ├── about.py │ ├── cfgform.py │ ├── cond.py │ ├── cond_command.py │ ├── cond_dbus.py │ ├── cond_event.py │ ├── cond_idle.py │ ├── cond_interval.py │ ├── cond_lua.py │ ├── cond_time.py │ ├── cond_wmi.py │ ├── event.py │ ├── event_cli.py │ ├── event_dbus.py │ ├── event_fschange.py │ ├── event_wmi.py │ ├── history.py │ ├── menubox.py │ ├── newitem.py │ ├── task.py │ ├── task_command.py │ ├── task_internal.py │ ├── task_lua.py │ └── ui.py ├── i18n │ ├── __init__.py │ ├── localizer.py │ ├── strings.py │ ├── strings_base.py │ ├── strings_de.py │ ├── strings_en.py │ ├── strings_fr.py │ └── strings_it.py ├── icons.py ├── internal │ └── reset_conds_on_resume.py ├── items │ ├── __init__.py │ ├── cond.py │ ├── cond_command.py │ ├── cond_dbus.py │ ├── cond_event.py │ ├── cond_idle.py │ ├── cond_interval.py │ ├── cond_lua.py │ ├── cond_time.py │ ├── cond_wmi.py │ ├── event.py │ ├── event_cli.py │ ├── event_dbus.py │ ├── event_fschange.py │ ├── event_wmi.py │ ├── item.py │ ├── itemhelp.py │ ├── task.py │ ├── task_command.py │ ├── task_internal.py │ └── task_lua.py ├── repocfg.py ├── runner │ ├── __init__.py │ ├── history.py │ ├── logger.py │ └── process.py ├── toolbox │ ├── __init__.py │ ├── check_config.py │ ├── create_shortcuts.py │ ├── create_shortcuts_icons.py │ ├── dlutils.py │ ├── fix_config.py │ ├── install_lua.py │ └── install_whenever.py ├── trayapp.py └── utility.py ├── pyproject.toml ├── support ├── append_icon.py ├── build_html.py ├── docs │ ├── _static │ │ └── favicon.ico │ ├── appdata.md │ ├── cfgform.md │ ├── cli.md │ ├── cond_actionrelated.md │ ├── cond_eventrelated.md │ ├── cond_extra01.md │ ├── cond_timerelated.md │ ├── conditions.md │ ├── conf.py │ ├── configfile.md │ ├── credits.md │ ├── events.md │ ├── events_extra01.md │ ├── graphics │ │ ├── install-gnome-login.png │ │ ├── install-linux-extmgr.png │ │ ├── rafi-clock-256.png │ │ ├── tutorial_cond_chores01.png │ │ ├── tutorial_cond_chores02.png │ │ ├── tutorial_cond_idle01.png │ │ ├── tutorial_cond_idle02.png │ │ ├── tutorial_cond_idle03.png │ │ ├── tutorial_cond_interval01.png │ │ ├── tutorial_cond_interval02.png │ │ ├── tutorial_cond_new_chores01.png │ │ ├── tutorial_cond_new_idle01.png │ │ ├── tutorial_cond_new_interval01.png │ │ ├── tutorial_config_main01.png │ │ ├── tutorial_task_backup01.png │ │ ├── tutorial_task_backup02.png │ │ ├── tutorial_task_chores01.png │ │ ├── tutorial_task_lua01.png │ │ ├── tutorial_task_new_cmd01.png │ │ ├── tutorial_task_new_lua01.png │ │ ├── when-application.png │ │ ├── when-cond-command.png │ │ ├── when-cond-common.png │ │ ├── when-cond-event.png │ │ ├── when-cond-extra-batterycharging.png │ │ ├── when-cond-extra-batterylow.png │ │ ├── when-cond-extra-locked-win.png │ │ ├── when-cond-extra-rmdrive-linux.png │ │ ├── when-cond-extra-rmdrive-win.png │ │ ├── when-cond-extra-sysload.png │ │ ├── when-cond-idle.png │ │ ├── when-cond-interval.png │ │ ├── when-cond-lua.png │ │ ├── when-cond-time.png │ │ ├── when-config-main-globals.png │ │ ├── when-config-main-items.png │ │ ├── when-event-extra-lock-linux.png │ │ ├── when-event-fschange.png │ │ ├── when-history.png │ │ ├── when-menu-form.png │ │ ├── when-task-command.png │ │ ├── when-task-extra-session.png │ │ ├── when-task-lua.png │ │ ├── when-tray-menu.png │ │ ├── when_banner.png │ │ └── when_banner.svg │ ├── history.md │ ├── i18n.md │ ├── index.rst │ ├── install.md │ ├── license.md │ ├── lua_considerations.md │ ├── main.md │ ├── tasks.md │ ├── tasks_extra_session.md │ ├── tray.md │ ├── tutorial.md │ └── when_history.md ├── i18n │ ├── INPUT │ │ ├── placeholder.txt │ │ └── strings.py │ ├── OUTPUT │ │ └── placeholder.txt │ ├── README.md │ ├── TEMP │ │ ├── placeholder.txt │ │ └── strings.py │ ├── pyproject.toml │ └── translate.ipynb ├── icons │ ├── favicon.ico │ ├── icons8-add-112x24.png │ ├── icons8-add-48.png │ ├── icons8-add-96.png │ ├── icons8-cancel-112x24.png │ ├── icons8-cancel-48.png │ ├── icons8-cancel-96.png │ ├── icons8-check-mark-112x24.png │ ├── icons8-check-mark-48.png │ ├── icons8-check-mark-96.png │ ├── icons8-circle-16.png │ ├── icons8-circled-play-112x24.png │ ├── icons8-circled-play-32.png │ ├── icons8-circled-play-32x32.png │ ├── icons8-circled-play-48.png │ ├── icons8-clock-48-busy.png │ ├── icons8-clock-48.png │ ├── icons8-clock-96.png │ ├── icons8-clock-gray-48.png │ ├── icons8-clock-gray-96.png │ ├── icons8-close-window-112x24.png │ ├── icons8-close-window-48.png │ ├── icons8-close-window-96.png │ ├── icons8-delete-112x24.png │ ├── icons8-delete-48.png │ ├── icons8-delete-96.png │ ├── icons8-enter-112x24.png │ ├── icons8-enter-48.png │ ├── icons8-enter-96.png │ ├── icons8-error-48.png │ ├── icons8-error-96.png │ ├── icons8-exclamation-mark-48.png │ ├── icons8-exclamation-mark-96.png │ ├── icons8-exit-32.png │ ├── icons8-exit-32x32.png │ ├── icons8-exit-48.png │ ├── icons8-file-112x24.png │ ├── icons8-file-48.png │ ├── icons8-file-96.png │ ├── icons8-folder-112x24.png │ ├── icons8-folder-48.png │ ├── icons8-folder-96.png │ ├── icons8-help-20.png │ ├── icons8-index-112x24.png │ ├── icons8-index-32.png │ ├── icons8-index-32x32.png │ ├── icons8-index-48.png │ ├── icons8-kite-shape-16.png │ ├── icons8-medium-priority-20.png │ ├── icons8-new-document-112x24.png │ ├── icons8-new-document-48.png │ ├── icons8-new-document-96.png │ ├── icons8-pause-squared-112x24.png │ ├── icons8-pause-squared-32.png │ ├── icons8-pause-squared-32x32.png │ ├── icons8-pause-squared-48.png │ ├── icons8-pencil-drawing-112x24.png │ ├── icons8-pencil-drawing-48.png │ ├── icons8-pencil-drawing-96.png │ ├── icons8-question-mark-48.png │ ├── icons8-question-mark-96.png │ ├── icons8-remove-112x24.png │ ├── icons8-remove-48.png │ ├── icons8-remove-96.png │ ├── icons8-reset-112x24.png │ ├── icons8-reset-32.png │ ├── icons8-reset-32x32.png │ ├── icons8-reset-48.png │ ├── icons8-save-112x24.png │ ├── icons8-save-48.png │ ├── icons8-save-96.png │ ├── icons8-settings-48.png │ ├── icons8-settings-96.png │ ├── icons8-square-16.png │ ├── icons8-switch-20.png │ ├── icons8-task-20.png │ ├── rafi-clock-128.png │ ├── rafi-clock-256.png │ ├── rafi-clock-32.png │ ├── rafi-clock-64.ico │ └── rafi-clock-64.png ├── update_version.lua └── updatever.lua └── when ├── __init__.py ├── when.py └── when_bg.pyw /.github/workflows/documentation.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/almostearthling/when-command/HEAD/.github/workflows/documentation.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/almostearthling/when-command/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/almostearthling/when-command/HEAD/README.md -------------------------------------------------------------------------------- /lib/__init__.py: -------------------------------------------------------------------------------- 1 | # library 2 | -------------------------------------------------------------------------------- /lib/cfgapp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/almostearthling/when-command/HEAD/lib/cfgapp.py -------------------------------------------------------------------------------- /lib/configurator/__init__.py: -------------------------------------------------------------------------------- 1 | # configuration reader/writer module 2 | -------------------------------------------------------------------------------- /lib/configurator/defaults.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/almostearthling/when-command/HEAD/lib/configurator/defaults.py -------------------------------------------------------------------------------- /lib/configurator/reader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/almostearthling/when-command/HEAD/lib/configurator/reader.py -------------------------------------------------------------------------------- /lib/configurator/writer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/almostearthling/when-command/HEAD/lib/configurator/writer.py -------------------------------------------------------------------------------- /lib/extra/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/almostearthling/when-command/HEAD/lib/extra/__init__.py -------------------------------------------------------------------------------- /lib/extra/_template.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/almostearthling/when-command/HEAD/lib/extra/_template.py -------------------------------------------------------------------------------- /lib/extra/c_battery_charging_linux.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/almostearthling/when-command/HEAD/lib/extra/c_battery_charging_linux.py -------------------------------------------------------------------------------- /lib/extra/c_battery_charging_win32.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/almostearthling/when-command/HEAD/lib/extra/c_battery_charging_win32.py -------------------------------------------------------------------------------- /lib/extra/c_battery_low_linux.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/almostearthling/when-command/HEAD/lib/extra/c_battery_low_linux.py -------------------------------------------------------------------------------- /lib/extra/c_battery_low_win32.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/almostearthling/when-command/HEAD/lib/extra/c_battery_low_win32.py -------------------------------------------------------------------------------- /lib/extra/c_removabledrive_linux.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/almostearthling/when-command/HEAD/lib/extra/c_removabledrive_linux.py -------------------------------------------------------------------------------- /lib/extra/c_removabledrive_win32.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/almostearthling/when-command/HEAD/lib/extra/c_removabledrive_win32.py -------------------------------------------------------------------------------- /lib/extra/c_session_locked_win32.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/almostearthling/when-command/HEAD/lib/extra/c_session_locked_win32.py -------------------------------------------------------------------------------- /lib/extra/c_sysload_linux.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/almostearthling/when-command/HEAD/lib/extra/c_sysload_linux.py -------------------------------------------------------------------------------- /lib/extra/c_sysload_win32.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/almostearthling/when-command/HEAD/lib/extra/c_sysload_win32.py -------------------------------------------------------------------------------- /lib/extra/e_session_lock_linux.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/almostearthling/when-command/HEAD/lib/extra/e_session_lock_linux.py -------------------------------------------------------------------------------- /lib/extra/e_session_unlock_linux.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/almostearthling/when-command/HEAD/lib/extra/e_session_unlock_linux.py -------------------------------------------------------------------------------- /lib/extra/i18n/_template_de.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/almostearthling/when-command/HEAD/lib/extra/i18n/_template_de.py -------------------------------------------------------------------------------- /lib/extra/i18n/_template_en.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/almostearthling/when-command/HEAD/lib/extra/i18n/_template_en.py -------------------------------------------------------------------------------- /lib/extra/i18n/_template_fr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/almostearthling/when-command/HEAD/lib/extra/i18n/_template_fr.py -------------------------------------------------------------------------------- /lib/extra/i18n/_template_it.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/almostearthling/when-command/HEAD/lib/extra/i18n/_template_it.py -------------------------------------------------------------------------------- /lib/extra/i18n/c_battery_charging_linux_de.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/almostearthling/when-command/HEAD/lib/extra/i18n/c_battery_charging_linux_de.py -------------------------------------------------------------------------------- /lib/extra/i18n/c_battery_charging_linux_en.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/almostearthling/when-command/HEAD/lib/extra/i18n/c_battery_charging_linux_en.py -------------------------------------------------------------------------------- /lib/extra/i18n/c_battery_charging_linux_fr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/almostearthling/when-command/HEAD/lib/extra/i18n/c_battery_charging_linux_fr.py -------------------------------------------------------------------------------- /lib/extra/i18n/c_battery_charging_linux_it.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/almostearthling/when-command/HEAD/lib/extra/i18n/c_battery_charging_linux_it.py -------------------------------------------------------------------------------- /lib/extra/i18n/c_battery_charging_win32_de.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/almostearthling/when-command/HEAD/lib/extra/i18n/c_battery_charging_win32_de.py -------------------------------------------------------------------------------- /lib/extra/i18n/c_battery_charging_win32_en.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/almostearthling/when-command/HEAD/lib/extra/i18n/c_battery_charging_win32_en.py -------------------------------------------------------------------------------- /lib/extra/i18n/c_battery_charging_win32_fr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/almostearthling/when-command/HEAD/lib/extra/i18n/c_battery_charging_win32_fr.py -------------------------------------------------------------------------------- /lib/extra/i18n/c_battery_charging_win32_it.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/almostearthling/when-command/HEAD/lib/extra/i18n/c_battery_charging_win32_it.py -------------------------------------------------------------------------------- /lib/extra/i18n/c_battery_low_linux_de.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/almostearthling/when-command/HEAD/lib/extra/i18n/c_battery_low_linux_de.py -------------------------------------------------------------------------------- /lib/extra/i18n/c_battery_low_linux_en.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/almostearthling/when-command/HEAD/lib/extra/i18n/c_battery_low_linux_en.py -------------------------------------------------------------------------------- /lib/extra/i18n/c_battery_low_linux_fr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/almostearthling/when-command/HEAD/lib/extra/i18n/c_battery_low_linux_fr.py -------------------------------------------------------------------------------- /lib/extra/i18n/c_battery_low_linux_it.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/almostearthling/when-command/HEAD/lib/extra/i18n/c_battery_low_linux_it.py -------------------------------------------------------------------------------- /lib/extra/i18n/c_battery_low_win32_de.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/almostearthling/when-command/HEAD/lib/extra/i18n/c_battery_low_win32_de.py -------------------------------------------------------------------------------- /lib/extra/i18n/c_battery_low_win32_en.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/almostearthling/when-command/HEAD/lib/extra/i18n/c_battery_low_win32_en.py -------------------------------------------------------------------------------- /lib/extra/i18n/c_battery_low_win32_fr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/almostearthling/when-command/HEAD/lib/extra/i18n/c_battery_low_win32_fr.py -------------------------------------------------------------------------------- /lib/extra/i18n/c_battery_low_win32_it.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/almostearthling/when-command/HEAD/lib/extra/i18n/c_battery_low_win32_it.py -------------------------------------------------------------------------------- /lib/extra/i18n/c_removabledrive_linux_de.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/almostearthling/when-command/HEAD/lib/extra/i18n/c_removabledrive_linux_de.py -------------------------------------------------------------------------------- /lib/extra/i18n/c_removabledrive_linux_en.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/almostearthling/when-command/HEAD/lib/extra/i18n/c_removabledrive_linux_en.py -------------------------------------------------------------------------------- /lib/extra/i18n/c_removabledrive_linux_fr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/almostearthling/when-command/HEAD/lib/extra/i18n/c_removabledrive_linux_fr.py -------------------------------------------------------------------------------- /lib/extra/i18n/c_removabledrive_linux_it.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/almostearthling/when-command/HEAD/lib/extra/i18n/c_removabledrive_linux_it.py -------------------------------------------------------------------------------- /lib/extra/i18n/c_removabledrive_win32_de.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/almostearthling/when-command/HEAD/lib/extra/i18n/c_removabledrive_win32_de.py -------------------------------------------------------------------------------- /lib/extra/i18n/c_removabledrive_win32_en.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/almostearthling/when-command/HEAD/lib/extra/i18n/c_removabledrive_win32_en.py -------------------------------------------------------------------------------- /lib/extra/i18n/c_removabledrive_win32_fr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/almostearthling/when-command/HEAD/lib/extra/i18n/c_removabledrive_win32_fr.py -------------------------------------------------------------------------------- /lib/extra/i18n/c_removabledrive_win32_it.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/almostearthling/when-command/HEAD/lib/extra/i18n/c_removabledrive_win32_it.py -------------------------------------------------------------------------------- /lib/extra/i18n/c_session_locked_win32_de.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/almostearthling/when-command/HEAD/lib/extra/i18n/c_session_locked_win32_de.py -------------------------------------------------------------------------------- /lib/extra/i18n/c_session_locked_win32_en.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/almostearthling/when-command/HEAD/lib/extra/i18n/c_session_locked_win32_en.py -------------------------------------------------------------------------------- /lib/extra/i18n/c_session_locked_win32_fr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/almostearthling/when-command/HEAD/lib/extra/i18n/c_session_locked_win32_fr.py -------------------------------------------------------------------------------- /lib/extra/i18n/c_session_locked_win32_it.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/almostearthling/when-command/HEAD/lib/extra/i18n/c_session_locked_win32_it.py -------------------------------------------------------------------------------- /lib/extra/i18n/c_sysload_linux_de.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/almostearthling/when-command/HEAD/lib/extra/i18n/c_sysload_linux_de.py -------------------------------------------------------------------------------- /lib/extra/i18n/c_sysload_linux_en.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/almostearthling/when-command/HEAD/lib/extra/i18n/c_sysload_linux_en.py -------------------------------------------------------------------------------- /lib/extra/i18n/c_sysload_linux_fr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/almostearthling/when-command/HEAD/lib/extra/i18n/c_sysload_linux_fr.py -------------------------------------------------------------------------------- /lib/extra/i18n/c_sysload_linux_it.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/almostearthling/when-command/HEAD/lib/extra/i18n/c_sysload_linux_it.py -------------------------------------------------------------------------------- /lib/extra/i18n/c_sysload_win32_de.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/almostearthling/when-command/HEAD/lib/extra/i18n/c_sysload_win32_de.py -------------------------------------------------------------------------------- /lib/extra/i18n/c_sysload_win32_en.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/almostearthling/when-command/HEAD/lib/extra/i18n/c_sysload_win32_en.py -------------------------------------------------------------------------------- /lib/extra/i18n/c_sysload_win32_fr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/almostearthling/when-command/HEAD/lib/extra/i18n/c_sysload_win32_fr.py -------------------------------------------------------------------------------- /lib/extra/i18n/c_sysload_win32_it.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/almostearthling/when-command/HEAD/lib/extra/i18n/c_sysload_win32_it.py -------------------------------------------------------------------------------- /lib/extra/i18n/e_session_lock_linux_de.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/almostearthling/when-command/HEAD/lib/extra/i18n/e_session_lock_linux_de.py -------------------------------------------------------------------------------- /lib/extra/i18n/e_session_lock_linux_en.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/almostearthling/when-command/HEAD/lib/extra/i18n/e_session_lock_linux_en.py -------------------------------------------------------------------------------- /lib/extra/i18n/e_session_lock_linux_fr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/almostearthling/when-command/HEAD/lib/extra/i18n/e_session_lock_linux_fr.py -------------------------------------------------------------------------------- /lib/extra/i18n/e_session_lock_linux_it.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/almostearthling/when-command/HEAD/lib/extra/i18n/e_session_lock_linux_it.py -------------------------------------------------------------------------------- /lib/extra/i18n/e_session_unlock_linux_de.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/almostearthling/when-command/HEAD/lib/extra/i18n/e_session_unlock_linux_de.py -------------------------------------------------------------------------------- /lib/extra/i18n/e_session_unlock_linux_en.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/almostearthling/when-command/HEAD/lib/extra/i18n/e_session_unlock_linux_en.py -------------------------------------------------------------------------------- /lib/extra/i18n/e_session_unlock_linux_fr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/almostearthling/when-command/HEAD/lib/extra/i18n/e_session_unlock_linux_fr.py -------------------------------------------------------------------------------- /lib/extra/i18n/e_session_unlock_linux_it.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/almostearthling/when-command/HEAD/lib/extra/i18n/e_session_unlock_linux_it.py -------------------------------------------------------------------------------- /lib/extra/i18n/extra_locale.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/almostearthling/when-command/HEAD/lib/extra/i18n/extra_locale.py -------------------------------------------------------------------------------- /lib/extra/i18n/i18n.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/almostearthling/when-command/HEAD/lib/extra/i18n/i18n.txt -------------------------------------------------------------------------------- /lib/extra/i18n/t_hibernate_de.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/almostearthling/when-command/HEAD/lib/extra/i18n/t_hibernate_de.py -------------------------------------------------------------------------------- /lib/extra/i18n/t_hibernate_en.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/almostearthling/when-command/HEAD/lib/extra/i18n/t_hibernate_en.py -------------------------------------------------------------------------------- /lib/extra/i18n/t_hibernate_fr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/almostearthling/when-command/HEAD/lib/extra/i18n/t_hibernate_fr.py -------------------------------------------------------------------------------- /lib/extra/i18n/t_hibernate_it.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/almostearthling/when-command/HEAD/lib/extra/i18n/t_hibernate_it.py -------------------------------------------------------------------------------- /lib/extra/i18n/t_locksession_de.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/almostearthling/when-command/HEAD/lib/extra/i18n/t_locksession_de.py -------------------------------------------------------------------------------- /lib/extra/i18n/t_locksession_en.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/almostearthling/when-command/HEAD/lib/extra/i18n/t_locksession_en.py -------------------------------------------------------------------------------- /lib/extra/i18n/t_locksession_fr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/almostearthling/when-command/HEAD/lib/extra/i18n/t_locksession_fr.py -------------------------------------------------------------------------------- /lib/extra/i18n/t_locksession_it.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/almostearthling/when-command/HEAD/lib/extra/i18n/t_locksession_it.py -------------------------------------------------------------------------------- /lib/extra/i18n/t_logoff_de.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/almostearthling/when-command/HEAD/lib/extra/i18n/t_logoff_de.py -------------------------------------------------------------------------------- /lib/extra/i18n/t_logoff_en.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/almostearthling/when-command/HEAD/lib/extra/i18n/t_logoff_en.py -------------------------------------------------------------------------------- /lib/extra/i18n/t_logoff_fr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/almostearthling/when-command/HEAD/lib/extra/i18n/t_logoff_fr.py -------------------------------------------------------------------------------- /lib/extra/i18n/t_logoff_it.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/almostearthling/when-command/HEAD/lib/extra/i18n/t_logoff_it.py -------------------------------------------------------------------------------- /lib/extra/i18n/t_reboot_de.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/almostearthling/when-command/HEAD/lib/extra/i18n/t_reboot_de.py -------------------------------------------------------------------------------- /lib/extra/i18n/t_reboot_en.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/almostearthling/when-command/HEAD/lib/extra/i18n/t_reboot_en.py -------------------------------------------------------------------------------- /lib/extra/i18n/t_reboot_fr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/almostearthling/when-command/HEAD/lib/extra/i18n/t_reboot_fr.py -------------------------------------------------------------------------------- /lib/extra/i18n/t_reboot_it.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/almostearthling/when-command/HEAD/lib/extra/i18n/t_reboot_it.py -------------------------------------------------------------------------------- /lib/extra/i18n/t_shutdown_de.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/almostearthling/when-command/HEAD/lib/extra/i18n/t_shutdown_de.py -------------------------------------------------------------------------------- /lib/extra/i18n/t_shutdown_en.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/almostearthling/when-command/HEAD/lib/extra/i18n/t_shutdown_en.py -------------------------------------------------------------------------------- /lib/extra/i18n/t_shutdown_fr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/almostearthling/when-command/HEAD/lib/extra/i18n/t_shutdown_fr.py -------------------------------------------------------------------------------- /lib/extra/i18n/t_shutdown_it.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/almostearthling/when-command/HEAD/lib/extra/i18n/t_shutdown_it.py -------------------------------------------------------------------------------- /lib/extra/t_hibernate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/almostearthling/when-command/HEAD/lib/extra/t_hibernate.py -------------------------------------------------------------------------------- /lib/extra/t_locksession.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/almostearthling/when-command/HEAD/lib/extra/t_locksession.py -------------------------------------------------------------------------------- /lib/extra/t_logoff.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/almostearthling/when-command/HEAD/lib/extra/t_logoff.py -------------------------------------------------------------------------------- /lib/extra/t_reboot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/almostearthling/when-command/HEAD/lib/extra/t_reboot.py -------------------------------------------------------------------------------- /lib/extra/t_shutdown.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/almostearthling/when-command/HEAD/lib/extra/t_shutdown.py -------------------------------------------------------------------------------- /lib/forms/__init__.py: -------------------------------------------------------------------------------- 1 | # forms module 2 | -------------------------------------------------------------------------------- /lib/forms/about.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/almostearthling/when-command/HEAD/lib/forms/about.py -------------------------------------------------------------------------------- /lib/forms/cfgform.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/almostearthling/when-command/HEAD/lib/forms/cfgform.py -------------------------------------------------------------------------------- /lib/forms/cond.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/almostearthling/when-command/HEAD/lib/forms/cond.py -------------------------------------------------------------------------------- /lib/forms/cond_command.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/almostearthling/when-command/HEAD/lib/forms/cond_command.py -------------------------------------------------------------------------------- /lib/forms/cond_dbus.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/almostearthling/when-command/HEAD/lib/forms/cond_dbus.py -------------------------------------------------------------------------------- /lib/forms/cond_event.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/almostearthling/when-command/HEAD/lib/forms/cond_event.py -------------------------------------------------------------------------------- /lib/forms/cond_idle.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/almostearthling/when-command/HEAD/lib/forms/cond_idle.py -------------------------------------------------------------------------------- /lib/forms/cond_interval.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/almostearthling/when-command/HEAD/lib/forms/cond_interval.py -------------------------------------------------------------------------------- /lib/forms/cond_lua.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/almostearthling/when-command/HEAD/lib/forms/cond_lua.py -------------------------------------------------------------------------------- /lib/forms/cond_time.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/almostearthling/when-command/HEAD/lib/forms/cond_time.py -------------------------------------------------------------------------------- /lib/forms/cond_wmi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/almostearthling/when-command/HEAD/lib/forms/cond_wmi.py -------------------------------------------------------------------------------- /lib/forms/event.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/almostearthling/when-command/HEAD/lib/forms/event.py -------------------------------------------------------------------------------- /lib/forms/event_cli.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/almostearthling/when-command/HEAD/lib/forms/event_cli.py -------------------------------------------------------------------------------- /lib/forms/event_dbus.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/almostearthling/when-command/HEAD/lib/forms/event_dbus.py -------------------------------------------------------------------------------- /lib/forms/event_fschange.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/almostearthling/when-command/HEAD/lib/forms/event_fschange.py -------------------------------------------------------------------------------- /lib/forms/event_wmi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/almostearthling/when-command/HEAD/lib/forms/event_wmi.py -------------------------------------------------------------------------------- /lib/forms/history.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/almostearthling/when-command/HEAD/lib/forms/history.py -------------------------------------------------------------------------------- /lib/forms/menubox.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/almostearthling/when-command/HEAD/lib/forms/menubox.py -------------------------------------------------------------------------------- /lib/forms/newitem.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/almostearthling/when-command/HEAD/lib/forms/newitem.py -------------------------------------------------------------------------------- /lib/forms/task.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/almostearthling/when-command/HEAD/lib/forms/task.py -------------------------------------------------------------------------------- /lib/forms/task_command.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/almostearthling/when-command/HEAD/lib/forms/task_command.py -------------------------------------------------------------------------------- /lib/forms/task_internal.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/almostearthling/when-command/HEAD/lib/forms/task_internal.py -------------------------------------------------------------------------------- /lib/forms/task_lua.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/almostearthling/when-command/HEAD/lib/forms/task_lua.py -------------------------------------------------------------------------------- /lib/forms/ui.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/almostearthling/when-command/HEAD/lib/forms/ui.py -------------------------------------------------------------------------------- /lib/i18n/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/almostearthling/when-command/HEAD/lib/i18n/__init__.py -------------------------------------------------------------------------------- /lib/i18n/localizer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/almostearthling/when-command/HEAD/lib/i18n/localizer.py -------------------------------------------------------------------------------- /lib/i18n/strings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/almostearthling/when-command/HEAD/lib/i18n/strings.py -------------------------------------------------------------------------------- /lib/i18n/strings_base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/almostearthling/when-command/HEAD/lib/i18n/strings_base.py -------------------------------------------------------------------------------- /lib/i18n/strings_de.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/almostearthling/when-command/HEAD/lib/i18n/strings_de.py -------------------------------------------------------------------------------- /lib/i18n/strings_en.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/almostearthling/when-command/HEAD/lib/i18n/strings_en.py -------------------------------------------------------------------------------- /lib/i18n/strings_fr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/almostearthling/when-command/HEAD/lib/i18n/strings_fr.py -------------------------------------------------------------------------------- /lib/i18n/strings_it.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/almostearthling/when-command/HEAD/lib/i18n/strings_it.py -------------------------------------------------------------------------------- /lib/icons.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/almostearthling/when-command/HEAD/lib/icons.py -------------------------------------------------------------------------------- /lib/internal/reset_conds_on_resume.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/almostearthling/when-command/HEAD/lib/internal/reset_conds_on_resume.py -------------------------------------------------------------------------------- /lib/items/__init__.py: -------------------------------------------------------------------------------- 1 | # items module 2 | -------------------------------------------------------------------------------- /lib/items/cond.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/almostearthling/when-command/HEAD/lib/items/cond.py -------------------------------------------------------------------------------- /lib/items/cond_command.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/almostearthling/when-command/HEAD/lib/items/cond_command.py -------------------------------------------------------------------------------- /lib/items/cond_dbus.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/almostearthling/when-command/HEAD/lib/items/cond_dbus.py -------------------------------------------------------------------------------- /lib/items/cond_event.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/almostearthling/when-command/HEAD/lib/items/cond_event.py -------------------------------------------------------------------------------- /lib/items/cond_idle.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/almostearthling/when-command/HEAD/lib/items/cond_idle.py -------------------------------------------------------------------------------- /lib/items/cond_interval.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/almostearthling/when-command/HEAD/lib/items/cond_interval.py -------------------------------------------------------------------------------- /lib/items/cond_lua.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/almostearthling/when-command/HEAD/lib/items/cond_lua.py -------------------------------------------------------------------------------- /lib/items/cond_time.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/almostearthling/when-command/HEAD/lib/items/cond_time.py -------------------------------------------------------------------------------- /lib/items/cond_wmi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/almostearthling/when-command/HEAD/lib/items/cond_wmi.py -------------------------------------------------------------------------------- /lib/items/event.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/almostearthling/when-command/HEAD/lib/items/event.py -------------------------------------------------------------------------------- /lib/items/event_cli.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/almostearthling/when-command/HEAD/lib/items/event_cli.py -------------------------------------------------------------------------------- /lib/items/event_dbus.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/almostearthling/when-command/HEAD/lib/items/event_dbus.py -------------------------------------------------------------------------------- /lib/items/event_fschange.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/almostearthling/when-command/HEAD/lib/items/event_fschange.py -------------------------------------------------------------------------------- /lib/items/event_wmi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/almostearthling/when-command/HEAD/lib/items/event_wmi.py -------------------------------------------------------------------------------- /lib/items/item.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/almostearthling/when-command/HEAD/lib/items/item.py -------------------------------------------------------------------------------- /lib/items/itemhelp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/almostearthling/when-command/HEAD/lib/items/itemhelp.py -------------------------------------------------------------------------------- /lib/items/task.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/almostearthling/when-command/HEAD/lib/items/task.py -------------------------------------------------------------------------------- /lib/items/task_command.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/almostearthling/when-command/HEAD/lib/items/task_command.py -------------------------------------------------------------------------------- /lib/items/task_internal.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/almostearthling/when-command/HEAD/lib/items/task_internal.py -------------------------------------------------------------------------------- /lib/items/task_lua.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/almostearthling/when-command/HEAD/lib/items/task_lua.py -------------------------------------------------------------------------------- /lib/repocfg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/almostearthling/when-command/HEAD/lib/repocfg.py -------------------------------------------------------------------------------- /lib/runner/__init__.py: -------------------------------------------------------------------------------- 1 | # scheduler starter 2 | 3 | -------------------------------------------------------------------------------- /lib/runner/history.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/almostearthling/when-command/HEAD/lib/runner/history.py -------------------------------------------------------------------------------- /lib/runner/logger.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/almostearthling/when-command/HEAD/lib/runner/logger.py -------------------------------------------------------------------------------- /lib/runner/process.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/almostearthling/when-command/HEAD/lib/runner/process.py -------------------------------------------------------------------------------- /lib/toolbox/__init__.py: -------------------------------------------------------------------------------- 1 | # toolbox 2 | -------------------------------------------------------------------------------- /lib/toolbox/check_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/almostearthling/when-command/HEAD/lib/toolbox/check_config.py -------------------------------------------------------------------------------- /lib/toolbox/create_shortcuts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/almostearthling/when-command/HEAD/lib/toolbox/create_shortcuts.py -------------------------------------------------------------------------------- /lib/toolbox/create_shortcuts_icons.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/almostearthling/when-command/HEAD/lib/toolbox/create_shortcuts_icons.py -------------------------------------------------------------------------------- /lib/toolbox/dlutils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/almostearthling/when-command/HEAD/lib/toolbox/dlutils.py -------------------------------------------------------------------------------- /lib/toolbox/fix_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/almostearthling/when-command/HEAD/lib/toolbox/fix_config.py -------------------------------------------------------------------------------- /lib/toolbox/install_lua.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/almostearthling/when-command/HEAD/lib/toolbox/install_lua.py -------------------------------------------------------------------------------- /lib/toolbox/install_whenever.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/almostearthling/when-command/HEAD/lib/toolbox/install_whenever.py -------------------------------------------------------------------------------- /lib/trayapp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/almostearthling/when-command/HEAD/lib/trayapp.py -------------------------------------------------------------------------------- /lib/utility.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/almostearthling/when-command/HEAD/lib/utility.py -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/almostearthling/when-command/HEAD/pyproject.toml -------------------------------------------------------------------------------- /support/append_icon.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/almostearthling/when-command/HEAD/support/append_icon.py -------------------------------------------------------------------------------- /support/build_html.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/almostearthling/when-command/HEAD/support/build_html.py -------------------------------------------------------------------------------- /support/docs/_static/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/almostearthling/when-command/HEAD/support/docs/_static/favicon.ico -------------------------------------------------------------------------------- /support/docs/appdata.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/almostearthling/when-command/HEAD/support/docs/appdata.md -------------------------------------------------------------------------------- /support/docs/cfgform.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/almostearthling/when-command/HEAD/support/docs/cfgform.md -------------------------------------------------------------------------------- /support/docs/cli.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/almostearthling/when-command/HEAD/support/docs/cli.md -------------------------------------------------------------------------------- /support/docs/cond_actionrelated.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/almostearthling/when-command/HEAD/support/docs/cond_actionrelated.md -------------------------------------------------------------------------------- /support/docs/cond_eventrelated.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/almostearthling/when-command/HEAD/support/docs/cond_eventrelated.md -------------------------------------------------------------------------------- /support/docs/cond_extra01.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/almostearthling/when-command/HEAD/support/docs/cond_extra01.md -------------------------------------------------------------------------------- /support/docs/cond_timerelated.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/almostearthling/when-command/HEAD/support/docs/cond_timerelated.md -------------------------------------------------------------------------------- /support/docs/conditions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/almostearthling/when-command/HEAD/support/docs/conditions.md -------------------------------------------------------------------------------- /support/docs/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/almostearthling/when-command/HEAD/support/docs/conf.py -------------------------------------------------------------------------------- /support/docs/configfile.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/almostearthling/when-command/HEAD/support/docs/configfile.md -------------------------------------------------------------------------------- /support/docs/credits.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/almostearthling/when-command/HEAD/support/docs/credits.md -------------------------------------------------------------------------------- /support/docs/events.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/almostearthling/when-command/HEAD/support/docs/events.md -------------------------------------------------------------------------------- /support/docs/events_extra01.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/almostearthling/when-command/HEAD/support/docs/events_extra01.md -------------------------------------------------------------------------------- /support/docs/graphics/install-gnome-login.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/almostearthling/when-command/HEAD/support/docs/graphics/install-gnome-login.png -------------------------------------------------------------------------------- /support/docs/graphics/install-linux-extmgr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/almostearthling/when-command/HEAD/support/docs/graphics/install-linux-extmgr.png -------------------------------------------------------------------------------- /support/docs/graphics/rafi-clock-256.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/almostearthling/when-command/HEAD/support/docs/graphics/rafi-clock-256.png -------------------------------------------------------------------------------- /support/docs/graphics/tutorial_cond_chores01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/almostearthling/when-command/HEAD/support/docs/graphics/tutorial_cond_chores01.png -------------------------------------------------------------------------------- /support/docs/graphics/tutorial_cond_chores02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/almostearthling/when-command/HEAD/support/docs/graphics/tutorial_cond_chores02.png -------------------------------------------------------------------------------- /support/docs/graphics/tutorial_cond_idle01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/almostearthling/when-command/HEAD/support/docs/graphics/tutorial_cond_idle01.png -------------------------------------------------------------------------------- /support/docs/graphics/tutorial_cond_idle02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/almostearthling/when-command/HEAD/support/docs/graphics/tutorial_cond_idle02.png -------------------------------------------------------------------------------- /support/docs/graphics/tutorial_cond_idle03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/almostearthling/when-command/HEAD/support/docs/graphics/tutorial_cond_idle03.png -------------------------------------------------------------------------------- /support/docs/graphics/tutorial_cond_interval01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/almostearthling/when-command/HEAD/support/docs/graphics/tutorial_cond_interval01.png -------------------------------------------------------------------------------- /support/docs/graphics/tutorial_cond_interval02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/almostearthling/when-command/HEAD/support/docs/graphics/tutorial_cond_interval02.png -------------------------------------------------------------------------------- /support/docs/graphics/tutorial_cond_new_chores01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/almostearthling/when-command/HEAD/support/docs/graphics/tutorial_cond_new_chores01.png -------------------------------------------------------------------------------- /support/docs/graphics/tutorial_cond_new_idle01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/almostearthling/when-command/HEAD/support/docs/graphics/tutorial_cond_new_idle01.png -------------------------------------------------------------------------------- /support/docs/graphics/tutorial_cond_new_interval01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/almostearthling/when-command/HEAD/support/docs/graphics/tutorial_cond_new_interval01.png -------------------------------------------------------------------------------- /support/docs/graphics/tutorial_config_main01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/almostearthling/when-command/HEAD/support/docs/graphics/tutorial_config_main01.png -------------------------------------------------------------------------------- /support/docs/graphics/tutorial_task_backup01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/almostearthling/when-command/HEAD/support/docs/graphics/tutorial_task_backup01.png -------------------------------------------------------------------------------- /support/docs/graphics/tutorial_task_backup02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/almostearthling/when-command/HEAD/support/docs/graphics/tutorial_task_backup02.png -------------------------------------------------------------------------------- /support/docs/graphics/tutorial_task_chores01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/almostearthling/when-command/HEAD/support/docs/graphics/tutorial_task_chores01.png -------------------------------------------------------------------------------- /support/docs/graphics/tutorial_task_lua01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/almostearthling/when-command/HEAD/support/docs/graphics/tutorial_task_lua01.png -------------------------------------------------------------------------------- /support/docs/graphics/tutorial_task_new_cmd01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/almostearthling/when-command/HEAD/support/docs/graphics/tutorial_task_new_cmd01.png -------------------------------------------------------------------------------- /support/docs/graphics/tutorial_task_new_lua01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/almostearthling/when-command/HEAD/support/docs/graphics/tutorial_task_new_lua01.png -------------------------------------------------------------------------------- /support/docs/graphics/when-application.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/almostearthling/when-command/HEAD/support/docs/graphics/when-application.png -------------------------------------------------------------------------------- /support/docs/graphics/when-cond-command.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/almostearthling/when-command/HEAD/support/docs/graphics/when-cond-command.png -------------------------------------------------------------------------------- /support/docs/graphics/when-cond-common.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/almostearthling/when-command/HEAD/support/docs/graphics/when-cond-common.png -------------------------------------------------------------------------------- /support/docs/graphics/when-cond-event.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/almostearthling/when-command/HEAD/support/docs/graphics/when-cond-event.png -------------------------------------------------------------------------------- /support/docs/graphics/when-cond-extra-batterycharging.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/almostearthling/when-command/HEAD/support/docs/graphics/when-cond-extra-batterycharging.png -------------------------------------------------------------------------------- /support/docs/graphics/when-cond-extra-batterylow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/almostearthling/when-command/HEAD/support/docs/graphics/when-cond-extra-batterylow.png -------------------------------------------------------------------------------- /support/docs/graphics/when-cond-extra-locked-win.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/almostearthling/when-command/HEAD/support/docs/graphics/when-cond-extra-locked-win.png -------------------------------------------------------------------------------- /support/docs/graphics/when-cond-extra-rmdrive-linux.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/almostearthling/when-command/HEAD/support/docs/graphics/when-cond-extra-rmdrive-linux.png -------------------------------------------------------------------------------- /support/docs/graphics/when-cond-extra-rmdrive-win.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/almostearthling/when-command/HEAD/support/docs/graphics/when-cond-extra-rmdrive-win.png -------------------------------------------------------------------------------- /support/docs/graphics/when-cond-extra-sysload.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/almostearthling/when-command/HEAD/support/docs/graphics/when-cond-extra-sysload.png -------------------------------------------------------------------------------- /support/docs/graphics/when-cond-idle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/almostearthling/when-command/HEAD/support/docs/graphics/when-cond-idle.png -------------------------------------------------------------------------------- /support/docs/graphics/when-cond-interval.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/almostearthling/when-command/HEAD/support/docs/graphics/when-cond-interval.png -------------------------------------------------------------------------------- /support/docs/graphics/when-cond-lua.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/almostearthling/when-command/HEAD/support/docs/graphics/when-cond-lua.png -------------------------------------------------------------------------------- /support/docs/graphics/when-cond-time.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/almostearthling/when-command/HEAD/support/docs/graphics/when-cond-time.png -------------------------------------------------------------------------------- /support/docs/graphics/when-config-main-globals.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/almostearthling/when-command/HEAD/support/docs/graphics/when-config-main-globals.png -------------------------------------------------------------------------------- /support/docs/graphics/when-config-main-items.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/almostearthling/when-command/HEAD/support/docs/graphics/when-config-main-items.png -------------------------------------------------------------------------------- /support/docs/graphics/when-event-extra-lock-linux.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/almostearthling/when-command/HEAD/support/docs/graphics/when-event-extra-lock-linux.png -------------------------------------------------------------------------------- /support/docs/graphics/when-event-fschange.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/almostearthling/when-command/HEAD/support/docs/graphics/when-event-fschange.png -------------------------------------------------------------------------------- /support/docs/graphics/when-history.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/almostearthling/when-command/HEAD/support/docs/graphics/when-history.png -------------------------------------------------------------------------------- /support/docs/graphics/when-menu-form.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/almostearthling/when-command/HEAD/support/docs/graphics/when-menu-form.png -------------------------------------------------------------------------------- /support/docs/graphics/when-task-command.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/almostearthling/when-command/HEAD/support/docs/graphics/when-task-command.png -------------------------------------------------------------------------------- /support/docs/graphics/when-task-extra-session.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/almostearthling/when-command/HEAD/support/docs/graphics/when-task-extra-session.png -------------------------------------------------------------------------------- /support/docs/graphics/when-task-lua.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/almostearthling/when-command/HEAD/support/docs/graphics/when-task-lua.png -------------------------------------------------------------------------------- /support/docs/graphics/when-tray-menu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/almostearthling/when-command/HEAD/support/docs/graphics/when-tray-menu.png -------------------------------------------------------------------------------- /support/docs/graphics/when_banner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/almostearthling/when-command/HEAD/support/docs/graphics/when_banner.png -------------------------------------------------------------------------------- /support/docs/graphics/when_banner.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/almostearthling/when-command/HEAD/support/docs/graphics/when_banner.svg -------------------------------------------------------------------------------- /support/docs/history.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/almostearthling/when-command/HEAD/support/docs/history.md -------------------------------------------------------------------------------- /support/docs/i18n.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/almostearthling/when-command/HEAD/support/docs/i18n.md -------------------------------------------------------------------------------- /support/docs/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/almostearthling/when-command/HEAD/support/docs/index.rst -------------------------------------------------------------------------------- /support/docs/install.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/almostearthling/when-command/HEAD/support/docs/install.md -------------------------------------------------------------------------------- /support/docs/license.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/almostearthling/when-command/HEAD/support/docs/license.md -------------------------------------------------------------------------------- /support/docs/lua_considerations.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/almostearthling/when-command/HEAD/support/docs/lua_considerations.md -------------------------------------------------------------------------------- /support/docs/main.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/almostearthling/when-command/HEAD/support/docs/main.md -------------------------------------------------------------------------------- /support/docs/tasks.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/almostearthling/when-command/HEAD/support/docs/tasks.md -------------------------------------------------------------------------------- /support/docs/tasks_extra_session.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/almostearthling/when-command/HEAD/support/docs/tasks_extra_session.md -------------------------------------------------------------------------------- /support/docs/tray.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/almostearthling/when-command/HEAD/support/docs/tray.md -------------------------------------------------------------------------------- /support/docs/tutorial.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/almostearthling/when-command/HEAD/support/docs/tutorial.md -------------------------------------------------------------------------------- /support/docs/when_history.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/almostearthling/when-command/HEAD/support/docs/when_history.md -------------------------------------------------------------------------------- /support/i18n/INPUT/placeholder.txt: -------------------------------------------------------------------------------- 1 | This file is just a placeholder. -------------------------------------------------------------------------------- /support/i18n/INPUT/strings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/almostearthling/when-command/HEAD/support/i18n/INPUT/strings.py -------------------------------------------------------------------------------- /support/i18n/OUTPUT/placeholder.txt: -------------------------------------------------------------------------------- 1 | This file is just a placeholder. -------------------------------------------------------------------------------- /support/i18n/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/almostearthling/when-command/HEAD/support/i18n/README.md -------------------------------------------------------------------------------- /support/i18n/TEMP/placeholder.txt: -------------------------------------------------------------------------------- 1 | This file is just a placeholder. -------------------------------------------------------------------------------- /support/i18n/TEMP/strings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/almostearthling/when-command/HEAD/support/i18n/TEMP/strings.py -------------------------------------------------------------------------------- /support/i18n/pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/almostearthling/when-command/HEAD/support/i18n/pyproject.toml -------------------------------------------------------------------------------- /support/i18n/translate.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/almostearthling/when-command/HEAD/support/i18n/translate.ipynb -------------------------------------------------------------------------------- /support/icons/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/almostearthling/when-command/HEAD/support/icons/favicon.ico -------------------------------------------------------------------------------- /support/icons/icons8-add-112x24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/almostearthling/when-command/HEAD/support/icons/icons8-add-112x24.png -------------------------------------------------------------------------------- /support/icons/icons8-add-48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/almostearthling/when-command/HEAD/support/icons/icons8-add-48.png -------------------------------------------------------------------------------- /support/icons/icons8-add-96.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/almostearthling/when-command/HEAD/support/icons/icons8-add-96.png -------------------------------------------------------------------------------- /support/icons/icons8-cancel-112x24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/almostearthling/when-command/HEAD/support/icons/icons8-cancel-112x24.png -------------------------------------------------------------------------------- /support/icons/icons8-cancel-48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/almostearthling/when-command/HEAD/support/icons/icons8-cancel-48.png -------------------------------------------------------------------------------- /support/icons/icons8-cancel-96.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/almostearthling/when-command/HEAD/support/icons/icons8-cancel-96.png -------------------------------------------------------------------------------- /support/icons/icons8-check-mark-112x24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/almostearthling/when-command/HEAD/support/icons/icons8-check-mark-112x24.png -------------------------------------------------------------------------------- /support/icons/icons8-check-mark-48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/almostearthling/when-command/HEAD/support/icons/icons8-check-mark-48.png -------------------------------------------------------------------------------- /support/icons/icons8-check-mark-96.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/almostearthling/when-command/HEAD/support/icons/icons8-check-mark-96.png -------------------------------------------------------------------------------- /support/icons/icons8-circle-16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/almostearthling/when-command/HEAD/support/icons/icons8-circle-16.png -------------------------------------------------------------------------------- /support/icons/icons8-circled-play-112x24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/almostearthling/when-command/HEAD/support/icons/icons8-circled-play-112x24.png -------------------------------------------------------------------------------- /support/icons/icons8-circled-play-32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/almostearthling/when-command/HEAD/support/icons/icons8-circled-play-32.png -------------------------------------------------------------------------------- /support/icons/icons8-circled-play-32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/almostearthling/when-command/HEAD/support/icons/icons8-circled-play-32x32.png -------------------------------------------------------------------------------- /support/icons/icons8-circled-play-48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/almostearthling/when-command/HEAD/support/icons/icons8-circled-play-48.png -------------------------------------------------------------------------------- /support/icons/icons8-clock-48-busy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/almostearthling/when-command/HEAD/support/icons/icons8-clock-48-busy.png -------------------------------------------------------------------------------- /support/icons/icons8-clock-48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/almostearthling/when-command/HEAD/support/icons/icons8-clock-48.png -------------------------------------------------------------------------------- /support/icons/icons8-clock-96.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/almostearthling/when-command/HEAD/support/icons/icons8-clock-96.png -------------------------------------------------------------------------------- /support/icons/icons8-clock-gray-48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/almostearthling/when-command/HEAD/support/icons/icons8-clock-gray-48.png -------------------------------------------------------------------------------- /support/icons/icons8-clock-gray-96.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/almostearthling/when-command/HEAD/support/icons/icons8-clock-gray-96.png -------------------------------------------------------------------------------- /support/icons/icons8-close-window-112x24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/almostearthling/when-command/HEAD/support/icons/icons8-close-window-112x24.png -------------------------------------------------------------------------------- /support/icons/icons8-close-window-48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/almostearthling/when-command/HEAD/support/icons/icons8-close-window-48.png -------------------------------------------------------------------------------- /support/icons/icons8-close-window-96.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/almostearthling/when-command/HEAD/support/icons/icons8-close-window-96.png -------------------------------------------------------------------------------- /support/icons/icons8-delete-112x24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/almostearthling/when-command/HEAD/support/icons/icons8-delete-112x24.png -------------------------------------------------------------------------------- /support/icons/icons8-delete-48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/almostearthling/when-command/HEAD/support/icons/icons8-delete-48.png -------------------------------------------------------------------------------- /support/icons/icons8-delete-96.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/almostearthling/when-command/HEAD/support/icons/icons8-delete-96.png -------------------------------------------------------------------------------- /support/icons/icons8-enter-112x24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/almostearthling/when-command/HEAD/support/icons/icons8-enter-112x24.png -------------------------------------------------------------------------------- /support/icons/icons8-enter-48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/almostearthling/when-command/HEAD/support/icons/icons8-enter-48.png -------------------------------------------------------------------------------- /support/icons/icons8-enter-96.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/almostearthling/when-command/HEAD/support/icons/icons8-enter-96.png -------------------------------------------------------------------------------- /support/icons/icons8-error-48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/almostearthling/when-command/HEAD/support/icons/icons8-error-48.png -------------------------------------------------------------------------------- /support/icons/icons8-error-96.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/almostearthling/when-command/HEAD/support/icons/icons8-error-96.png -------------------------------------------------------------------------------- /support/icons/icons8-exclamation-mark-48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/almostearthling/when-command/HEAD/support/icons/icons8-exclamation-mark-48.png -------------------------------------------------------------------------------- /support/icons/icons8-exclamation-mark-96.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/almostearthling/when-command/HEAD/support/icons/icons8-exclamation-mark-96.png -------------------------------------------------------------------------------- /support/icons/icons8-exit-32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/almostearthling/when-command/HEAD/support/icons/icons8-exit-32.png -------------------------------------------------------------------------------- /support/icons/icons8-exit-32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/almostearthling/when-command/HEAD/support/icons/icons8-exit-32x32.png -------------------------------------------------------------------------------- /support/icons/icons8-exit-48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/almostearthling/when-command/HEAD/support/icons/icons8-exit-48.png -------------------------------------------------------------------------------- /support/icons/icons8-file-112x24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/almostearthling/when-command/HEAD/support/icons/icons8-file-112x24.png -------------------------------------------------------------------------------- /support/icons/icons8-file-48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/almostearthling/when-command/HEAD/support/icons/icons8-file-48.png -------------------------------------------------------------------------------- /support/icons/icons8-file-96.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/almostearthling/when-command/HEAD/support/icons/icons8-file-96.png -------------------------------------------------------------------------------- /support/icons/icons8-folder-112x24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/almostearthling/when-command/HEAD/support/icons/icons8-folder-112x24.png -------------------------------------------------------------------------------- /support/icons/icons8-folder-48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/almostearthling/when-command/HEAD/support/icons/icons8-folder-48.png -------------------------------------------------------------------------------- /support/icons/icons8-folder-96.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/almostearthling/when-command/HEAD/support/icons/icons8-folder-96.png -------------------------------------------------------------------------------- /support/icons/icons8-help-20.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/almostearthling/when-command/HEAD/support/icons/icons8-help-20.png -------------------------------------------------------------------------------- /support/icons/icons8-index-112x24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/almostearthling/when-command/HEAD/support/icons/icons8-index-112x24.png -------------------------------------------------------------------------------- /support/icons/icons8-index-32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/almostearthling/when-command/HEAD/support/icons/icons8-index-32.png -------------------------------------------------------------------------------- /support/icons/icons8-index-32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/almostearthling/when-command/HEAD/support/icons/icons8-index-32x32.png -------------------------------------------------------------------------------- /support/icons/icons8-index-48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/almostearthling/when-command/HEAD/support/icons/icons8-index-48.png -------------------------------------------------------------------------------- /support/icons/icons8-kite-shape-16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/almostearthling/when-command/HEAD/support/icons/icons8-kite-shape-16.png -------------------------------------------------------------------------------- /support/icons/icons8-medium-priority-20.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/almostearthling/when-command/HEAD/support/icons/icons8-medium-priority-20.png -------------------------------------------------------------------------------- /support/icons/icons8-new-document-112x24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/almostearthling/when-command/HEAD/support/icons/icons8-new-document-112x24.png -------------------------------------------------------------------------------- /support/icons/icons8-new-document-48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/almostearthling/when-command/HEAD/support/icons/icons8-new-document-48.png -------------------------------------------------------------------------------- /support/icons/icons8-new-document-96.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/almostearthling/when-command/HEAD/support/icons/icons8-new-document-96.png -------------------------------------------------------------------------------- /support/icons/icons8-pause-squared-112x24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/almostearthling/when-command/HEAD/support/icons/icons8-pause-squared-112x24.png -------------------------------------------------------------------------------- /support/icons/icons8-pause-squared-32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/almostearthling/when-command/HEAD/support/icons/icons8-pause-squared-32.png -------------------------------------------------------------------------------- /support/icons/icons8-pause-squared-32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/almostearthling/when-command/HEAD/support/icons/icons8-pause-squared-32x32.png -------------------------------------------------------------------------------- /support/icons/icons8-pause-squared-48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/almostearthling/when-command/HEAD/support/icons/icons8-pause-squared-48.png -------------------------------------------------------------------------------- /support/icons/icons8-pencil-drawing-112x24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/almostearthling/when-command/HEAD/support/icons/icons8-pencil-drawing-112x24.png -------------------------------------------------------------------------------- /support/icons/icons8-pencil-drawing-48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/almostearthling/when-command/HEAD/support/icons/icons8-pencil-drawing-48.png -------------------------------------------------------------------------------- /support/icons/icons8-pencil-drawing-96.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/almostearthling/when-command/HEAD/support/icons/icons8-pencil-drawing-96.png -------------------------------------------------------------------------------- /support/icons/icons8-question-mark-48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/almostearthling/when-command/HEAD/support/icons/icons8-question-mark-48.png -------------------------------------------------------------------------------- /support/icons/icons8-question-mark-96.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/almostearthling/when-command/HEAD/support/icons/icons8-question-mark-96.png -------------------------------------------------------------------------------- /support/icons/icons8-remove-112x24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/almostearthling/when-command/HEAD/support/icons/icons8-remove-112x24.png -------------------------------------------------------------------------------- /support/icons/icons8-remove-48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/almostearthling/when-command/HEAD/support/icons/icons8-remove-48.png -------------------------------------------------------------------------------- /support/icons/icons8-remove-96.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/almostearthling/when-command/HEAD/support/icons/icons8-remove-96.png -------------------------------------------------------------------------------- /support/icons/icons8-reset-112x24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/almostearthling/when-command/HEAD/support/icons/icons8-reset-112x24.png -------------------------------------------------------------------------------- /support/icons/icons8-reset-32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/almostearthling/when-command/HEAD/support/icons/icons8-reset-32.png -------------------------------------------------------------------------------- /support/icons/icons8-reset-32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/almostearthling/when-command/HEAD/support/icons/icons8-reset-32x32.png -------------------------------------------------------------------------------- /support/icons/icons8-reset-48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/almostearthling/when-command/HEAD/support/icons/icons8-reset-48.png -------------------------------------------------------------------------------- /support/icons/icons8-save-112x24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/almostearthling/when-command/HEAD/support/icons/icons8-save-112x24.png -------------------------------------------------------------------------------- /support/icons/icons8-save-48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/almostearthling/when-command/HEAD/support/icons/icons8-save-48.png -------------------------------------------------------------------------------- /support/icons/icons8-save-96.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/almostearthling/when-command/HEAD/support/icons/icons8-save-96.png -------------------------------------------------------------------------------- /support/icons/icons8-settings-48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/almostearthling/when-command/HEAD/support/icons/icons8-settings-48.png -------------------------------------------------------------------------------- /support/icons/icons8-settings-96.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/almostearthling/when-command/HEAD/support/icons/icons8-settings-96.png -------------------------------------------------------------------------------- /support/icons/icons8-square-16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/almostearthling/when-command/HEAD/support/icons/icons8-square-16.png -------------------------------------------------------------------------------- /support/icons/icons8-switch-20.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/almostearthling/when-command/HEAD/support/icons/icons8-switch-20.png -------------------------------------------------------------------------------- /support/icons/icons8-task-20.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/almostearthling/when-command/HEAD/support/icons/icons8-task-20.png -------------------------------------------------------------------------------- /support/icons/rafi-clock-128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/almostearthling/when-command/HEAD/support/icons/rafi-clock-128.png -------------------------------------------------------------------------------- /support/icons/rafi-clock-256.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/almostearthling/when-command/HEAD/support/icons/rafi-clock-256.png -------------------------------------------------------------------------------- /support/icons/rafi-clock-32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/almostearthling/when-command/HEAD/support/icons/rafi-clock-32.png -------------------------------------------------------------------------------- /support/icons/rafi-clock-64.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/almostearthling/when-command/HEAD/support/icons/rafi-clock-64.ico -------------------------------------------------------------------------------- /support/icons/rafi-clock-64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/almostearthling/when-command/HEAD/support/icons/rafi-clock-64.png -------------------------------------------------------------------------------- /support/update_version.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/almostearthling/when-command/HEAD/support/update_version.lua -------------------------------------------------------------------------------- /support/updatever.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/almostearthling/when-command/HEAD/support/updatever.lua -------------------------------------------------------------------------------- /when/__init__.py: -------------------------------------------------------------------------------- 1 | # main module 2 | -------------------------------------------------------------------------------- /when/when.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/almostearthling/when-command/HEAD/when/when.py -------------------------------------------------------------------------------- /when/when_bg.pyw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/almostearthling/when-command/HEAD/when/when_bg.pyw --------------------------------------------------------------------------------