├── .flake8 ├── .gitignore ├── README.md ├── images └── timer.png ├── main.py ├── manifest.json ├── setup.cfg ├── test ├── tests ├── __init__.py └── timer │ ├── __init__.py │ ├── fixtures.py │ ├── launcher.py │ ├── loop.py │ ├── mock.py │ ├── notifications.py │ ├── sounds.py │ ├── test_Timer.py │ ├── test_TimerExtension.py │ ├── test_query_parser.py │ └── test_timediff_formatter.py ├── timer ├── ExtensionKeywordListener.py ├── ItemEnterEventListener.py ├── Timer.py ├── TimerExtension.py ├── TimerLoop.py ├── __init__.py ├── media.py ├── query_parser.py └── timediff_formatter.py └── versions.json /.flake8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ulauncher/ulauncher-timer/HEAD/.flake8 -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ulauncher/ulauncher-timer/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ulauncher/ulauncher-timer/HEAD/README.md -------------------------------------------------------------------------------- /images/timer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ulauncher/ulauncher-timer/HEAD/images/timer.png -------------------------------------------------------------------------------- /main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ulauncher/ulauncher-timer/HEAD/main.py -------------------------------------------------------------------------------- /manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ulauncher/ulauncher-timer/HEAD/manifest.json -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ulauncher/ulauncher-timer/HEAD/setup.cfg -------------------------------------------------------------------------------- /test: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | eval "PYTHONPATH=`pwd` py.test --pep8 $@" 4 | -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/timer/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ulauncher/ulauncher-timer/HEAD/tests/timer/__init__.py -------------------------------------------------------------------------------- /tests/timer/fixtures.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ulauncher/ulauncher-timer/HEAD/tests/timer/fixtures.py -------------------------------------------------------------------------------- /tests/timer/launcher.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ulauncher/ulauncher-timer/HEAD/tests/timer/launcher.py -------------------------------------------------------------------------------- /tests/timer/loop.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ulauncher/ulauncher-timer/HEAD/tests/timer/loop.py -------------------------------------------------------------------------------- /tests/timer/mock.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ulauncher/ulauncher-timer/HEAD/tests/timer/mock.py -------------------------------------------------------------------------------- /tests/timer/notifications.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ulauncher/ulauncher-timer/HEAD/tests/timer/notifications.py -------------------------------------------------------------------------------- /tests/timer/sounds.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ulauncher/ulauncher-timer/HEAD/tests/timer/sounds.py -------------------------------------------------------------------------------- /tests/timer/test_Timer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ulauncher/ulauncher-timer/HEAD/tests/timer/test_Timer.py -------------------------------------------------------------------------------- /tests/timer/test_TimerExtension.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ulauncher/ulauncher-timer/HEAD/tests/timer/test_TimerExtension.py -------------------------------------------------------------------------------- /tests/timer/test_query_parser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ulauncher/ulauncher-timer/HEAD/tests/timer/test_query_parser.py -------------------------------------------------------------------------------- /tests/timer/test_timediff_formatter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ulauncher/ulauncher-timer/HEAD/tests/timer/test_timediff_formatter.py -------------------------------------------------------------------------------- /timer/ExtensionKeywordListener.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ulauncher/ulauncher-timer/HEAD/timer/ExtensionKeywordListener.py -------------------------------------------------------------------------------- /timer/ItemEnterEventListener.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ulauncher/ulauncher-timer/HEAD/timer/ItemEnterEventListener.py -------------------------------------------------------------------------------- /timer/Timer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ulauncher/ulauncher-timer/HEAD/timer/Timer.py -------------------------------------------------------------------------------- /timer/TimerExtension.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ulauncher/ulauncher-timer/HEAD/timer/TimerExtension.py -------------------------------------------------------------------------------- /timer/TimerLoop.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ulauncher/ulauncher-timer/HEAD/timer/TimerLoop.py -------------------------------------------------------------------------------- /timer/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /timer/media.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ulauncher/ulauncher-timer/HEAD/timer/media.py -------------------------------------------------------------------------------- /timer/query_parser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ulauncher/ulauncher-timer/HEAD/timer/query_parser.py -------------------------------------------------------------------------------- /timer/timediff_formatter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ulauncher/ulauncher-timer/HEAD/timer/timediff_formatter.py -------------------------------------------------------------------------------- /versions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ulauncher/ulauncher-timer/HEAD/versions.json --------------------------------------------------------------------------------