├── .editorconfig ├── .github ├── dependabot.yml └── workflows │ └── ci.yml ├── .gitignore ├── .valalintignore ├── AUTHORS ├── COPYING ├── README.md ├── com.github.sgpthomas.hourglass.yml ├── data ├── Application.css ├── com.github.sgpthomas.hourglass.desktop.in.in ├── com.github.sgpthomas.hourglass.gresource.xml ├── com.github.sgpthomas.hourglass.gschema.xml ├── com.github.sgpthomas.hourglass.metainfo.xml.in.in ├── com.github.sgpthomas.hourglass.svg ├── icons │ ├── 128x128 │ │ └── apps │ │ │ ├── com.github.sgpthomas.hourglass.png │ │ │ └── com.github.sgpthomas.hourglass.svg │ ├── 16x16 │ │ └── apps │ │ │ ├── com.github.sgpthomas.hourglass.png │ │ │ └── com.github.sgpthomas.hourglass.svg │ ├── 24x24 │ │ └── apps │ │ │ ├── com.github.sgpthomas.hourglass.png │ │ │ └── com.github.sgpthomas.hourglass.svg │ ├── 32x32 │ │ └── apps │ │ │ ├── com.github.sgpthomas.hourglass.png │ │ │ └── com.github.sgpthomas.hourglass.svg │ ├── 48x48 │ │ └── apps │ │ │ ├── com.github.sgpthomas.hourglass.png │ │ │ └── com.github.sgpthomas.hourglass.svg │ ├── 64x64 │ │ └── apps │ │ │ ├── com.github.sgpthomas.hourglass.png │ │ │ └── com.github.sgpthomas.hourglass.svg │ └── scalable │ │ └── apps │ │ └── com.github.sgpthomas.hourglass.svg ├── meson.build └── screenshots │ ├── alarm.png │ ├── stopwatch.png │ └── timer.png ├── debian ├── changelog ├── compat ├── control ├── copyright ├── rules └── source │ └── format ├── meson.build ├── po ├── LINGUAS ├── POTFILES ├── bs.po ├── com.github.sgpthomas.hourglass.pot ├── de.po ├── es.po ├── et.po ├── extra │ ├── LINGUAS │ ├── POTFILES │ ├── extra.pot │ ├── fr.po │ ├── ja.po │ ├── meson.build │ ├── pt.po │ └── ru.po ├── fr.po ├── it.po ├── ja.po ├── lt.po ├── meson.build ├── pt.po ├── pt_BR.po ├── ru.po ├── sv.po └── tr.po └── src ├── Config.vala.in ├── Daemon ├── AlarmManager.vala ├── HourglassDaemon.vala └── meson.build ├── Dialogs ├── MultiSelectPopover.vala └── NewAlarmDialog.vala ├── Hourglass.vala ├── Objects └── Counter.vala ├── Utils.vala ├── Views ├── AbstractView.vala ├── AlarmView.vala ├── StopwatchView.vala └── TimerView.vala ├── Widgets └── Alarm.vala ├── Window └── MainWindow.vala └── meson.build /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgpthomas/hourglass/HEAD/.editorconfig -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgpthomas/hourglass/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgpthomas/hourglass/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgpthomas/hourglass/HEAD/.gitignore -------------------------------------------------------------------------------- /.valalintignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgpthomas/hourglass/HEAD/.valalintignore -------------------------------------------------------------------------------- /AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgpthomas/hourglass/HEAD/AUTHORS -------------------------------------------------------------------------------- /COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgpthomas/hourglass/HEAD/COPYING -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgpthomas/hourglass/HEAD/README.md -------------------------------------------------------------------------------- /com.github.sgpthomas.hourglass.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgpthomas/hourglass/HEAD/com.github.sgpthomas.hourglass.yml -------------------------------------------------------------------------------- /data/Application.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgpthomas/hourglass/HEAD/data/Application.css -------------------------------------------------------------------------------- /data/com.github.sgpthomas.hourglass.desktop.in.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgpthomas/hourglass/HEAD/data/com.github.sgpthomas.hourglass.desktop.in.in -------------------------------------------------------------------------------- /data/com.github.sgpthomas.hourglass.gresource.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgpthomas/hourglass/HEAD/data/com.github.sgpthomas.hourglass.gresource.xml -------------------------------------------------------------------------------- /data/com.github.sgpthomas.hourglass.gschema.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgpthomas/hourglass/HEAD/data/com.github.sgpthomas.hourglass.gschema.xml -------------------------------------------------------------------------------- /data/com.github.sgpthomas.hourglass.metainfo.xml.in.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgpthomas/hourglass/HEAD/data/com.github.sgpthomas.hourglass.metainfo.xml.in.in -------------------------------------------------------------------------------- /data/com.github.sgpthomas.hourglass.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgpthomas/hourglass/HEAD/data/com.github.sgpthomas.hourglass.svg -------------------------------------------------------------------------------- /data/icons/128x128/apps/com.github.sgpthomas.hourglass.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgpthomas/hourglass/HEAD/data/icons/128x128/apps/com.github.sgpthomas.hourglass.png -------------------------------------------------------------------------------- /data/icons/128x128/apps/com.github.sgpthomas.hourglass.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgpthomas/hourglass/HEAD/data/icons/128x128/apps/com.github.sgpthomas.hourglass.svg -------------------------------------------------------------------------------- /data/icons/16x16/apps/com.github.sgpthomas.hourglass.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgpthomas/hourglass/HEAD/data/icons/16x16/apps/com.github.sgpthomas.hourglass.png -------------------------------------------------------------------------------- /data/icons/16x16/apps/com.github.sgpthomas.hourglass.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgpthomas/hourglass/HEAD/data/icons/16x16/apps/com.github.sgpthomas.hourglass.svg -------------------------------------------------------------------------------- /data/icons/24x24/apps/com.github.sgpthomas.hourglass.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgpthomas/hourglass/HEAD/data/icons/24x24/apps/com.github.sgpthomas.hourglass.png -------------------------------------------------------------------------------- /data/icons/24x24/apps/com.github.sgpthomas.hourglass.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgpthomas/hourglass/HEAD/data/icons/24x24/apps/com.github.sgpthomas.hourglass.svg -------------------------------------------------------------------------------- /data/icons/32x32/apps/com.github.sgpthomas.hourglass.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgpthomas/hourglass/HEAD/data/icons/32x32/apps/com.github.sgpthomas.hourglass.png -------------------------------------------------------------------------------- /data/icons/32x32/apps/com.github.sgpthomas.hourglass.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgpthomas/hourglass/HEAD/data/icons/32x32/apps/com.github.sgpthomas.hourglass.svg -------------------------------------------------------------------------------- /data/icons/48x48/apps/com.github.sgpthomas.hourglass.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgpthomas/hourglass/HEAD/data/icons/48x48/apps/com.github.sgpthomas.hourglass.png -------------------------------------------------------------------------------- /data/icons/48x48/apps/com.github.sgpthomas.hourglass.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgpthomas/hourglass/HEAD/data/icons/48x48/apps/com.github.sgpthomas.hourglass.svg -------------------------------------------------------------------------------- /data/icons/64x64/apps/com.github.sgpthomas.hourglass.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgpthomas/hourglass/HEAD/data/icons/64x64/apps/com.github.sgpthomas.hourglass.png -------------------------------------------------------------------------------- /data/icons/64x64/apps/com.github.sgpthomas.hourglass.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgpthomas/hourglass/HEAD/data/icons/64x64/apps/com.github.sgpthomas.hourglass.svg -------------------------------------------------------------------------------- /data/icons/scalable/apps/com.github.sgpthomas.hourglass.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgpthomas/hourglass/HEAD/data/icons/scalable/apps/com.github.sgpthomas.hourglass.svg -------------------------------------------------------------------------------- /data/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgpthomas/hourglass/HEAD/data/meson.build -------------------------------------------------------------------------------- /data/screenshots/alarm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgpthomas/hourglass/HEAD/data/screenshots/alarm.png -------------------------------------------------------------------------------- /data/screenshots/stopwatch.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgpthomas/hourglass/HEAD/data/screenshots/stopwatch.png -------------------------------------------------------------------------------- /data/screenshots/timer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgpthomas/hourglass/HEAD/data/screenshots/timer.png -------------------------------------------------------------------------------- /debian/changelog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgpthomas/hourglass/HEAD/debian/changelog -------------------------------------------------------------------------------- /debian/compat: -------------------------------------------------------------------------------- 1 | 10 2 | -------------------------------------------------------------------------------- /debian/control: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgpthomas/hourglass/HEAD/debian/control -------------------------------------------------------------------------------- /debian/copyright: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgpthomas/hourglass/HEAD/debian/copyright -------------------------------------------------------------------------------- /debian/rules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgpthomas/hourglass/HEAD/debian/rules -------------------------------------------------------------------------------- /debian/source/format: -------------------------------------------------------------------------------- 1 | 3.0 (native) 2 | -------------------------------------------------------------------------------- /meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgpthomas/hourglass/HEAD/meson.build -------------------------------------------------------------------------------- /po/LINGUAS: -------------------------------------------------------------------------------- 1 | bs 2 | de 3 | es 4 | et 5 | fr 6 | it 7 | ja 8 | lt 9 | pt_BR 10 | pt 11 | ru 12 | sv 13 | tr 14 | -------------------------------------------------------------------------------- /po/POTFILES: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgpthomas/hourglass/HEAD/po/POTFILES -------------------------------------------------------------------------------- /po/bs.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgpthomas/hourglass/HEAD/po/bs.po -------------------------------------------------------------------------------- /po/com.github.sgpthomas.hourglass.pot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgpthomas/hourglass/HEAD/po/com.github.sgpthomas.hourglass.pot -------------------------------------------------------------------------------- /po/de.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgpthomas/hourglass/HEAD/po/de.po -------------------------------------------------------------------------------- /po/es.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgpthomas/hourglass/HEAD/po/es.po -------------------------------------------------------------------------------- /po/et.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgpthomas/hourglass/HEAD/po/et.po -------------------------------------------------------------------------------- /po/extra/LINGUAS: -------------------------------------------------------------------------------- 1 | fr 2 | ja 3 | pt 4 | ru 5 | -------------------------------------------------------------------------------- /po/extra/POTFILES: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgpthomas/hourglass/HEAD/po/extra/POTFILES -------------------------------------------------------------------------------- /po/extra/extra.pot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgpthomas/hourglass/HEAD/po/extra/extra.pot -------------------------------------------------------------------------------- /po/extra/fr.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgpthomas/hourglass/HEAD/po/extra/fr.po -------------------------------------------------------------------------------- /po/extra/ja.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgpthomas/hourglass/HEAD/po/extra/ja.po -------------------------------------------------------------------------------- /po/extra/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgpthomas/hourglass/HEAD/po/extra/meson.build -------------------------------------------------------------------------------- /po/extra/pt.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgpthomas/hourglass/HEAD/po/extra/pt.po -------------------------------------------------------------------------------- /po/extra/ru.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgpthomas/hourglass/HEAD/po/extra/ru.po -------------------------------------------------------------------------------- /po/fr.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgpthomas/hourglass/HEAD/po/fr.po -------------------------------------------------------------------------------- /po/it.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgpthomas/hourglass/HEAD/po/it.po -------------------------------------------------------------------------------- /po/ja.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgpthomas/hourglass/HEAD/po/ja.po -------------------------------------------------------------------------------- /po/lt.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgpthomas/hourglass/HEAD/po/lt.po -------------------------------------------------------------------------------- /po/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgpthomas/hourglass/HEAD/po/meson.build -------------------------------------------------------------------------------- /po/pt.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgpthomas/hourglass/HEAD/po/pt.po -------------------------------------------------------------------------------- /po/pt_BR.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgpthomas/hourglass/HEAD/po/pt_BR.po -------------------------------------------------------------------------------- /po/ru.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgpthomas/hourglass/HEAD/po/ru.po -------------------------------------------------------------------------------- /po/sv.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgpthomas/hourglass/HEAD/po/sv.po -------------------------------------------------------------------------------- /po/tr.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgpthomas/hourglass/HEAD/po/tr.po -------------------------------------------------------------------------------- /src/Config.vala.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgpthomas/hourglass/HEAD/src/Config.vala.in -------------------------------------------------------------------------------- /src/Daemon/AlarmManager.vala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgpthomas/hourglass/HEAD/src/Daemon/AlarmManager.vala -------------------------------------------------------------------------------- /src/Daemon/HourglassDaemon.vala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgpthomas/hourglass/HEAD/src/Daemon/HourglassDaemon.vala -------------------------------------------------------------------------------- /src/Daemon/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgpthomas/hourglass/HEAD/src/Daemon/meson.build -------------------------------------------------------------------------------- /src/Dialogs/MultiSelectPopover.vala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgpthomas/hourglass/HEAD/src/Dialogs/MultiSelectPopover.vala -------------------------------------------------------------------------------- /src/Dialogs/NewAlarmDialog.vala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgpthomas/hourglass/HEAD/src/Dialogs/NewAlarmDialog.vala -------------------------------------------------------------------------------- /src/Hourglass.vala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgpthomas/hourglass/HEAD/src/Hourglass.vala -------------------------------------------------------------------------------- /src/Objects/Counter.vala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgpthomas/hourglass/HEAD/src/Objects/Counter.vala -------------------------------------------------------------------------------- /src/Utils.vala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgpthomas/hourglass/HEAD/src/Utils.vala -------------------------------------------------------------------------------- /src/Views/AbstractView.vala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgpthomas/hourglass/HEAD/src/Views/AbstractView.vala -------------------------------------------------------------------------------- /src/Views/AlarmView.vala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgpthomas/hourglass/HEAD/src/Views/AlarmView.vala -------------------------------------------------------------------------------- /src/Views/StopwatchView.vala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgpthomas/hourglass/HEAD/src/Views/StopwatchView.vala -------------------------------------------------------------------------------- /src/Views/TimerView.vala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgpthomas/hourglass/HEAD/src/Views/TimerView.vala -------------------------------------------------------------------------------- /src/Widgets/Alarm.vala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgpthomas/hourglass/HEAD/src/Widgets/Alarm.vala -------------------------------------------------------------------------------- /src/Window/MainWindow.vala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgpthomas/hourglass/HEAD/src/Window/MainWindow.vala -------------------------------------------------------------------------------- /src/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgpthomas/hourglass/HEAD/src/meson.build --------------------------------------------------------------------------------