├── .gitignore ├── CMakeLists.txt ├── COPYING.BSD ├── COPYING.MIT ├── README ├── i18n ├── asteroid-launcher.ar_AR.ts ├── asteroid-launcher.ast.ts ├── asteroid-launcher.az.ts ├── asteroid-launcher.be.ts ├── asteroid-launcher.bqi.ts ├── asteroid-launcher.ca.ts ├── asteroid-launcher.cs.ts ├── asteroid-launcher.da.ts ├── asteroid-launcher.de_DE.ts ├── asteroid-launcher.el.ts ├── asteroid-launcher.en_GB.ts ├── asteroid-launcher.eo.ts ├── asteroid-launcher.es.ts ├── asteroid-launcher.es_AR.ts ├── asteroid-launcher.fa.ts ├── asteroid-launcher.fi.ts ├── asteroid-launcher.fr.ts ├── asteroid-launcher.gl.ts ├── asteroid-launcher.he.ts ├── asteroid-launcher.hi.ts ├── asteroid-launcher.hr.ts ├── asteroid-launcher.hu.ts ├── asteroid-launcher.ia.ts ├── asteroid-launcher.id.ts ├── asteroid-launcher.isv.ts ├── asteroid-launcher.it.ts ├── asteroid-launcher.ja.ts ├── asteroid-launcher.ka.ts ├── asteroid-launcher.kab.ts ├── asteroid-launcher.ko.ts ├── asteroid-launcher.lb.ts ├── asteroid-launcher.lt.ts ├── asteroid-launcher.mr.ts ├── asteroid-launcher.ms.ts ├── asteroid-launcher.nb_NO.ts ├── asteroid-launcher.nl_BE.ts ├── asteroid-launcher.nl_NL.ts ├── asteroid-launcher.pl.ts ├── asteroid-launcher.pt.ts ├── asteroid-launcher.pt_BR.ts ├── asteroid-launcher.pt_PT.ts ├── asteroid-launcher.ro.ts ├── asteroid-launcher.ru.ts ├── asteroid-launcher.rue.ts ├── asteroid-launcher.sk.ts ├── asteroid-launcher.sv.ts ├── asteroid-launcher.ta.ts ├── asteroid-launcher.te.ts ├── asteroid-launcher.th.ts ├── asteroid-launcher.tr.ts ├── asteroid-launcher.tzm.ts ├── asteroid-launcher.uk.ts ├── asteroid-launcher.vec.ts ├── asteroid-launcher.vi.ts ├── asteroid-launcher.zh_Hans.ts └── asteroid-launcher.zh_Hant.ts └── src ├── CMakeLists.txt ├── applauncher ├── 000-default-horizontal.qml ├── 000-vertical.qml ├── 001-three-icons-horizontal.qml ├── 002-two-columns.qml ├── 003-turbo-list.qml ├── 004-three-by-three.qml └── 005-speed-dial.qml ├── applauncherbackground.cpp ├── applauncherbackground.h ├── firstrun.cpp ├── firstrun.h ├── gesturefilterarea.cpp ├── gesturefilterarea.h ├── images ├── bootlogo.svg └── shutdown-logo.png ├── launcherlocalemanager.cpp ├── launcherlocalemanager.h ├── main.cpp ├── notificationsnoozer.cpp ├── notificationsnoozer.h ├── qml ├── MainScreen.qml ├── compositor │ ├── CircleMaskShader.qml │ ├── WindowWrapperBase.qml │ └── compositor.qml ├── firstrun │ ├── FakeAlarmclock.qml │ ├── FirstRunConfig.qml │ └── Tutorial.qml ├── misc │ ├── BluetoothAgent.qml │ ├── ConnectionSelector.qml │ ├── PanelsGrid.qml │ ├── ShutdownScreen.qml │ ├── Splash.qml │ ├── USBModeSelector.qml │ ├── VolumeControl.qml │ └── desktop.js ├── notifications │ ├── NotificationActions.qml │ ├── NotificationButton.qml │ ├── NotificationIndicator.qml │ ├── NotificationPreview.qml │ ├── NotificationView.qml │ └── NotificationsPanel.qml ├── quicksettings │ ├── QuickSettings.qml │ └── QuickSettingsToggle.qml └── today │ ├── Today.qml │ └── weathericons.js ├── resources-qml.qrc ├── watchfaces-img ├── analog-aviator-hour-ambient.svg ├── analog-aviator-hour.svg ├── analog-aviator-minute-ambient.svg ├── analog-aviator-minute.svg ├── analog-aviator-second-ambient.svg ├── analog-aviator-second.svg ├── analog-circle-shades-hour.svg ├── analog-circle-shades-minute.svg ├── analog-circle-shades-second.svg ├── analog-scientific-v2-hour-bw.svg ├── analog-scientific-v2-hour.svg ├── analog-scientific-v2-minute-bw.svg ├── analog-scientific-v2-minute.svg ├── analog-scientific-v2-second.svg ├── analog-weather-satellite-hour-12h.svg ├── analog-weather-satellite-minute.svg ├── analog-weather-satellite-second.svg ├── asteroid-logo-black.svg ├── asteroid-logo-white.svg ├── asteroid-logo.svg ├── funky-town-words-01-bw.svg ├── funky-town-words-01.svg ├── funky-town-words-02-bw.svg ├── funky-town-words-02.svg ├── funky-town-words-03-bw.svg ├── funky-town-words-03.svg ├── funky-town-words-04-bw.svg ├── funky-town-words-04.svg ├── funky-town-words-05-bw.svg ├── funky-town-words-05.svg ├── funky-town-words-06-bw.svg ├── funky-town-words-06.svg ├── funky-town-words-07-bw.svg ├── funky-town-words-07.svg ├── funky-town-words-08-bw.svg ├── funky-town-words-08.svg ├── funky-town-words-09-bw.svg ├── funky-town-words-09.svg ├── funky-town-words-10-bw.svg ├── funky-town-words-10.svg ├── funky-town-words-11-bw.svg ├── funky-town-words-11.svg ├── funky-town-words-12-bw.svg ├── funky-town-words-12.svg ├── funky-town-words-am.svg ├── funky-town-words-pm.svg ├── numerals-duo-synth-neon-green-0.png ├── numerals-duo-synth-neon-green-1.png ├── numerals-duo-synth-neon-green-2.png ├── numerals-duo-synth-neon-green-3.png ├── numerals-duo-synth-neon-green-4.png ├── numerals-duo-synth-neon-green-5.png ├── numerals-duo-synth-neon-green-6.png ├── numerals-duo-synth-neon-green-7.png ├── numerals-duo-synth-neon-green-8.png └── numerals-duo-synth-neon-green-9.png ├── watchfaces-preview ├── 112 │ ├── 000-default-digital.png │ ├── 002-analog-70s-classic.png │ ├── 003-alternative-digital-2.png │ ├── 004-alternative-scifi.png │ ├── 005-analog-circle-shades.png │ ├── 006-analog-weather-satellite.png │ ├── 007-digital-outfit.png │ ├── 008-numerals-duo-synth-neon-green.png │ ├── 009-analog-scientific-v2.png │ ├── 010-analog-aviator.png │ ├── 011-bold-hour-bebas.png │ ├── 012-analog-words.png │ ├── 013-analog-nordic.png │ ├── 014-analog-50s-americana.png │ ├── 015-funky-town-words.png │ ├── 016-masked-spartan.png │ └── 017-contemporary-digital-rings.png ├── 128 │ ├── 000-default-digital.png │ ├── 002-analog-70s-classic.png │ ├── 003-alternative-digital-2.png │ ├── 004-alternative-scifi.png │ ├── 005-analog-circle-shades.png │ ├── 006-analog-weather-satellite.png │ ├── 007-digital-outfit.png │ ├── 008-numerals-duo-synth-neon-green.png │ ├── 009-analog-scientific-v2.png │ ├── 010-analog-aviator.png │ ├── 011-bold-hour-bebas.png │ ├── 012-analog-words.png │ ├── 013-analog-nordic.png │ ├── 014-analog-50s-americana.png │ ├── 015-funky-town-words.png │ ├── 016-masked-spartan.png │ └── 017-contemporary-digital-rings.png ├── 144 │ ├── 000-default-digital.png │ ├── 002-analog-70s-classic.png │ ├── 003-alternative-digital-2.png │ ├── 004-alternative-scifi.png │ ├── 005-analog-circle-shades.png │ ├── 006-analog-weather-satellite.png │ ├── 007-digital-outfit.png │ ├── 008-numerals-duo-synth-neon-green.png │ ├── 009-analog-scientific-v2.png │ ├── 010-analog-aviator.png │ ├── 011-bold-hour-bebas.png │ ├── 012-analog-words.png │ ├── 013-analog-nordic.png │ ├── 014-analog-50s-americana.png │ ├── 015-funky-town-words.png │ ├── 016-masked-spartan.png │ └── 017-contemporary-digital-rings.png ├── 160 │ ├── 000-default-digital.png │ ├── 002-analog-70s-classic.png │ ├── 003-alternative-digital-2.png │ ├── 004-alternative-scifi.png │ ├── 005-analog-circle-shades.png │ ├── 006-analog-weather-satellite.png │ ├── 007-digital-outfit.png │ ├── 008-numerals-duo-synth-neon-green.png │ ├── 009-analog-scientific-v2.png │ ├── 010-analog-aviator.png │ ├── 011-bold-hour-bebas.png │ ├── 012-analog-words.png │ ├── 013-analog-nordic.png │ ├── 014-analog-50s-americana.png │ ├── 015-funky-town-words.png │ ├── 016-masked-spartan.png │ └── 017-contemporary-digital-rings.png └── 182 │ ├── 000-default-digital.png │ ├── 002-analog-70s-classic.png │ ├── 003-alternative-digital-2.png │ ├── 004-alternative-scifi.png │ ├── 005-analog-circle-shades.png │ ├── 006-analog-weather-satellite.png │ ├── 007-digital-outfit.png │ ├── 008-numerals-duo-synth-neon-green.png │ ├── 009-analog-scientific-v2.png │ ├── 010-analog-aviator.png │ ├── 011-bold-hour-bebas.png │ ├── 012-analog-words.png │ ├── 013-analog-nordic.png │ ├── 014-analog-50s-americana.png │ ├── 015-funky-town-words.png │ ├── 016-masked-spartan.png │ └── 017-contemporary-digital-rings.png └── watchfaces ├── 000-default-digital.qml ├── 001-words-worte-palabras-mots.qml ├── 002-analog-70s-classic.qml ├── 003-alternative-digital-2.qml ├── 004-alternative-scifi.qml ├── 005-analog-circle-shades.qml ├── 006-analog-weather-satellite.qml ├── 007-digital-outfit.qml ├── 008-numerals-duo-synth-neon-green.qml ├── 009-analog-scientific-v2.qml ├── 010-analog-aviator.qml ├── 011-bold-hour-bebas.qml ├── 012-analog-words.qml ├── 013-analog-nordic.qml ├── 014-analog-50s-americana.qml ├── 015-funky-town-words.qml ├── 016-masked-spartan.qml ├── 017-contemporary-digital-rings.qml └── weathericons.js /.gitignore: -------------------------------------------------------------------------------- 1 | build 2 | -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AsteroidOS/asteroid-launcher/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /COPYING.BSD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AsteroidOS/asteroid-launcher/HEAD/COPYING.BSD -------------------------------------------------------------------------------- /COPYING.MIT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AsteroidOS/asteroid-launcher/HEAD/COPYING.MIT -------------------------------------------------------------------------------- /README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AsteroidOS/asteroid-launcher/HEAD/README -------------------------------------------------------------------------------- /i18n/asteroid-launcher.ar_AR.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AsteroidOS/asteroid-launcher/HEAD/i18n/asteroid-launcher.ar_AR.ts -------------------------------------------------------------------------------- /i18n/asteroid-launcher.ast.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AsteroidOS/asteroid-launcher/HEAD/i18n/asteroid-launcher.ast.ts -------------------------------------------------------------------------------- /i18n/asteroid-launcher.az.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AsteroidOS/asteroid-launcher/HEAD/i18n/asteroid-launcher.az.ts -------------------------------------------------------------------------------- /i18n/asteroid-launcher.be.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AsteroidOS/asteroid-launcher/HEAD/i18n/asteroid-launcher.be.ts -------------------------------------------------------------------------------- /i18n/asteroid-launcher.bqi.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AsteroidOS/asteroid-launcher/HEAD/i18n/asteroid-launcher.bqi.ts -------------------------------------------------------------------------------- /i18n/asteroid-launcher.ca.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AsteroidOS/asteroid-launcher/HEAD/i18n/asteroid-launcher.ca.ts -------------------------------------------------------------------------------- /i18n/asteroid-launcher.cs.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AsteroidOS/asteroid-launcher/HEAD/i18n/asteroid-launcher.cs.ts -------------------------------------------------------------------------------- /i18n/asteroid-launcher.da.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AsteroidOS/asteroid-launcher/HEAD/i18n/asteroid-launcher.da.ts -------------------------------------------------------------------------------- /i18n/asteroid-launcher.de_DE.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AsteroidOS/asteroid-launcher/HEAD/i18n/asteroid-launcher.de_DE.ts -------------------------------------------------------------------------------- /i18n/asteroid-launcher.el.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AsteroidOS/asteroid-launcher/HEAD/i18n/asteroid-launcher.el.ts -------------------------------------------------------------------------------- /i18n/asteroid-launcher.en_GB.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AsteroidOS/asteroid-launcher/HEAD/i18n/asteroid-launcher.en_GB.ts -------------------------------------------------------------------------------- /i18n/asteroid-launcher.eo.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AsteroidOS/asteroid-launcher/HEAD/i18n/asteroid-launcher.eo.ts -------------------------------------------------------------------------------- /i18n/asteroid-launcher.es.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AsteroidOS/asteroid-launcher/HEAD/i18n/asteroid-launcher.es.ts -------------------------------------------------------------------------------- /i18n/asteroid-launcher.es_AR.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AsteroidOS/asteroid-launcher/HEAD/i18n/asteroid-launcher.es_AR.ts -------------------------------------------------------------------------------- /i18n/asteroid-launcher.fa.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AsteroidOS/asteroid-launcher/HEAD/i18n/asteroid-launcher.fa.ts -------------------------------------------------------------------------------- /i18n/asteroid-launcher.fi.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AsteroidOS/asteroid-launcher/HEAD/i18n/asteroid-launcher.fi.ts -------------------------------------------------------------------------------- /i18n/asteroid-launcher.fr.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AsteroidOS/asteroid-launcher/HEAD/i18n/asteroid-launcher.fr.ts -------------------------------------------------------------------------------- /i18n/asteroid-launcher.gl.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AsteroidOS/asteroid-launcher/HEAD/i18n/asteroid-launcher.gl.ts -------------------------------------------------------------------------------- /i18n/asteroid-launcher.he.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AsteroidOS/asteroid-launcher/HEAD/i18n/asteroid-launcher.he.ts -------------------------------------------------------------------------------- /i18n/asteroid-launcher.hi.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AsteroidOS/asteroid-launcher/HEAD/i18n/asteroid-launcher.hi.ts -------------------------------------------------------------------------------- /i18n/asteroid-launcher.hr.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AsteroidOS/asteroid-launcher/HEAD/i18n/asteroid-launcher.hr.ts -------------------------------------------------------------------------------- /i18n/asteroid-launcher.hu.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AsteroidOS/asteroid-launcher/HEAD/i18n/asteroid-launcher.hu.ts -------------------------------------------------------------------------------- /i18n/asteroid-launcher.ia.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AsteroidOS/asteroid-launcher/HEAD/i18n/asteroid-launcher.ia.ts -------------------------------------------------------------------------------- /i18n/asteroid-launcher.id.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AsteroidOS/asteroid-launcher/HEAD/i18n/asteroid-launcher.id.ts -------------------------------------------------------------------------------- /i18n/asteroid-launcher.isv.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AsteroidOS/asteroid-launcher/HEAD/i18n/asteroid-launcher.isv.ts -------------------------------------------------------------------------------- /i18n/asteroid-launcher.it.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AsteroidOS/asteroid-launcher/HEAD/i18n/asteroid-launcher.it.ts -------------------------------------------------------------------------------- /i18n/asteroid-launcher.ja.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AsteroidOS/asteroid-launcher/HEAD/i18n/asteroid-launcher.ja.ts -------------------------------------------------------------------------------- /i18n/asteroid-launcher.ka.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AsteroidOS/asteroid-launcher/HEAD/i18n/asteroid-launcher.ka.ts -------------------------------------------------------------------------------- /i18n/asteroid-launcher.kab.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AsteroidOS/asteroid-launcher/HEAD/i18n/asteroid-launcher.kab.ts -------------------------------------------------------------------------------- /i18n/asteroid-launcher.ko.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AsteroidOS/asteroid-launcher/HEAD/i18n/asteroid-launcher.ko.ts -------------------------------------------------------------------------------- /i18n/asteroid-launcher.lb.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AsteroidOS/asteroid-launcher/HEAD/i18n/asteroid-launcher.lb.ts -------------------------------------------------------------------------------- /i18n/asteroid-launcher.lt.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AsteroidOS/asteroid-launcher/HEAD/i18n/asteroid-launcher.lt.ts -------------------------------------------------------------------------------- /i18n/asteroid-launcher.mr.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AsteroidOS/asteroid-launcher/HEAD/i18n/asteroid-launcher.mr.ts -------------------------------------------------------------------------------- /i18n/asteroid-launcher.ms.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AsteroidOS/asteroid-launcher/HEAD/i18n/asteroid-launcher.ms.ts -------------------------------------------------------------------------------- /i18n/asteroid-launcher.nb_NO.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AsteroidOS/asteroid-launcher/HEAD/i18n/asteroid-launcher.nb_NO.ts -------------------------------------------------------------------------------- /i18n/asteroid-launcher.nl_BE.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AsteroidOS/asteroid-launcher/HEAD/i18n/asteroid-launcher.nl_BE.ts -------------------------------------------------------------------------------- /i18n/asteroid-launcher.nl_NL.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AsteroidOS/asteroid-launcher/HEAD/i18n/asteroid-launcher.nl_NL.ts -------------------------------------------------------------------------------- /i18n/asteroid-launcher.pl.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AsteroidOS/asteroid-launcher/HEAD/i18n/asteroid-launcher.pl.ts -------------------------------------------------------------------------------- /i18n/asteroid-launcher.pt.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AsteroidOS/asteroid-launcher/HEAD/i18n/asteroid-launcher.pt.ts -------------------------------------------------------------------------------- /i18n/asteroid-launcher.pt_BR.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AsteroidOS/asteroid-launcher/HEAD/i18n/asteroid-launcher.pt_BR.ts -------------------------------------------------------------------------------- /i18n/asteroid-launcher.pt_PT.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AsteroidOS/asteroid-launcher/HEAD/i18n/asteroid-launcher.pt_PT.ts -------------------------------------------------------------------------------- /i18n/asteroid-launcher.ro.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AsteroidOS/asteroid-launcher/HEAD/i18n/asteroid-launcher.ro.ts -------------------------------------------------------------------------------- /i18n/asteroid-launcher.ru.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AsteroidOS/asteroid-launcher/HEAD/i18n/asteroid-launcher.ru.ts -------------------------------------------------------------------------------- /i18n/asteroid-launcher.rue.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AsteroidOS/asteroid-launcher/HEAD/i18n/asteroid-launcher.rue.ts -------------------------------------------------------------------------------- /i18n/asteroid-launcher.sk.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AsteroidOS/asteroid-launcher/HEAD/i18n/asteroid-launcher.sk.ts -------------------------------------------------------------------------------- /i18n/asteroid-launcher.sv.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AsteroidOS/asteroid-launcher/HEAD/i18n/asteroid-launcher.sv.ts -------------------------------------------------------------------------------- /i18n/asteroid-launcher.ta.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AsteroidOS/asteroid-launcher/HEAD/i18n/asteroid-launcher.ta.ts -------------------------------------------------------------------------------- /i18n/asteroid-launcher.te.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AsteroidOS/asteroid-launcher/HEAD/i18n/asteroid-launcher.te.ts -------------------------------------------------------------------------------- /i18n/asteroid-launcher.th.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AsteroidOS/asteroid-launcher/HEAD/i18n/asteroid-launcher.th.ts -------------------------------------------------------------------------------- /i18n/asteroid-launcher.tr.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AsteroidOS/asteroid-launcher/HEAD/i18n/asteroid-launcher.tr.ts -------------------------------------------------------------------------------- /i18n/asteroid-launcher.tzm.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AsteroidOS/asteroid-launcher/HEAD/i18n/asteroid-launcher.tzm.ts -------------------------------------------------------------------------------- /i18n/asteroid-launcher.uk.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AsteroidOS/asteroid-launcher/HEAD/i18n/asteroid-launcher.uk.ts -------------------------------------------------------------------------------- /i18n/asteroid-launcher.vec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AsteroidOS/asteroid-launcher/HEAD/i18n/asteroid-launcher.vec.ts -------------------------------------------------------------------------------- /i18n/asteroid-launcher.vi.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AsteroidOS/asteroid-launcher/HEAD/i18n/asteroid-launcher.vi.ts -------------------------------------------------------------------------------- /i18n/asteroid-launcher.zh_Hans.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AsteroidOS/asteroid-launcher/HEAD/i18n/asteroid-launcher.zh_Hans.ts -------------------------------------------------------------------------------- /i18n/asteroid-launcher.zh_Hant.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AsteroidOS/asteroid-launcher/HEAD/i18n/asteroid-launcher.zh_Hant.ts -------------------------------------------------------------------------------- /src/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AsteroidOS/asteroid-launcher/HEAD/src/CMakeLists.txt -------------------------------------------------------------------------------- /src/applauncher/000-default-horizontal.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AsteroidOS/asteroid-launcher/HEAD/src/applauncher/000-default-horizontal.qml -------------------------------------------------------------------------------- /src/applauncher/000-vertical.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AsteroidOS/asteroid-launcher/HEAD/src/applauncher/000-vertical.qml -------------------------------------------------------------------------------- /src/applauncher/001-three-icons-horizontal.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AsteroidOS/asteroid-launcher/HEAD/src/applauncher/001-three-icons-horizontal.qml -------------------------------------------------------------------------------- /src/applauncher/002-two-columns.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AsteroidOS/asteroid-launcher/HEAD/src/applauncher/002-two-columns.qml -------------------------------------------------------------------------------- /src/applauncher/003-turbo-list.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AsteroidOS/asteroid-launcher/HEAD/src/applauncher/003-turbo-list.qml -------------------------------------------------------------------------------- /src/applauncher/004-three-by-three.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AsteroidOS/asteroid-launcher/HEAD/src/applauncher/004-three-by-three.qml -------------------------------------------------------------------------------- /src/applauncher/005-speed-dial.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AsteroidOS/asteroid-launcher/HEAD/src/applauncher/005-speed-dial.qml -------------------------------------------------------------------------------- /src/applauncherbackground.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AsteroidOS/asteroid-launcher/HEAD/src/applauncherbackground.cpp -------------------------------------------------------------------------------- /src/applauncherbackground.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AsteroidOS/asteroid-launcher/HEAD/src/applauncherbackground.h -------------------------------------------------------------------------------- /src/firstrun.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AsteroidOS/asteroid-launcher/HEAD/src/firstrun.cpp -------------------------------------------------------------------------------- /src/firstrun.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AsteroidOS/asteroid-launcher/HEAD/src/firstrun.h -------------------------------------------------------------------------------- /src/gesturefilterarea.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AsteroidOS/asteroid-launcher/HEAD/src/gesturefilterarea.cpp -------------------------------------------------------------------------------- /src/gesturefilterarea.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AsteroidOS/asteroid-launcher/HEAD/src/gesturefilterarea.h -------------------------------------------------------------------------------- /src/images/bootlogo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AsteroidOS/asteroid-launcher/HEAD/src/images/bootlogo.svg -------------------------------------------------------------------------------- /src/images/shutdown-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AsteroidOS/asteroid-launcher/HEAD/src/images/shutdown-logo.png -------------------------------------------------------------------------------- /src/launcherlocalemanager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AsteroidOS/asteroid-launcher/HEAD/src/launcherlocalemanager.cpp -------------------------------------------------------------------------------- /src/launcherlocalemanager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AsteroidOS/asteroid-launcher/HEAD/src/launcherlocalemanager.h -------------------------------------------------------------------------------- /src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AsteroidOS/asteroid-launcher/HEAD/src/main.cpp -------------------------------------------------------------------------------- /src/notificationsnoozer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AsteroidOS/asteroid-launcher/HEAD/src/notificationsnoozer.cpp -------------------------------------------------------------------------------- /src/notificationsnoozer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AsteroidOS/asteroid-launcher/HEAD/src/notificationsnoozer.h -------------------------------------------------------------------------------- /src/qml/MainScreen.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AsteroidOS/asteroid-launcher/HEAD/src/qml/MainScreen.qml -------------------------------------------------------------------------------- /src/qml/compositor/CircleMaskShader.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AsteroidOS/asteroid-launcher/HEAD/src/qml/compositor/CircleMaskShader.qml -------------------------------------------------------------------------------- /src/qml/compositor/WindowWrapperBase.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AsteroidOS/asteroid-launcher/HEAD/src/qml/compositor/WindowWrapperBase.qml -------------------------------------------------------------------------------- /src/qml/compositor/compositor.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AsteroidOS/asteroid-launcher/HEAD/src/qml/compositor/compositor.qml -------------------------------------------------------------------------------- /src/qml/firstrun/FakeAlarmclock.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AsteroidOS/asteroid-launcher/HEAD/src/qml/firstrun/FakeAlarmclock.qml -------------------------------------------------------------------------------- /src/qml/firstrun/FirstRunConfig.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AsteroidOS/asteroid-launcher/HEAD/src/qml/firstrun/FirstRunConfig.qml -------------------------------------------------------------------------------- /src/qml/firstrun/Tutorial.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AsteroidOS/asteroid-launcher/HEAD/src/qml/firstrun/Tutorial.qml -------------------------------------------------------------------------------- /src/qml/misc/BluetoothAgent.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AsteroidOS/asteroid-launcher/HEAD/src/qml/misc/BluetoothAgent.qml -------------------------------------------------------------------------------- /src/qml/misc/ConnectionSelector.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AsteroidOS/asteroid-launcher/HEAD/src/qml/misc/ConnectionSelector.qml -------------------------------------------------------------------------------- /src/qml/misc/PanelsGrid.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AsteroidOS/asteroid-launcher/HEAD/src/qml/misc/PanelsGrid.qml -------------------------------------------------------------------------------- /src/qml/misc/ShutdownScreen.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AsteroidOS/asteroid-launcher/HEAD/src/qml/misc/ShutdownScreen.qml -------------------------------------------------------------------------------- /src/qml/misc/Splash.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AsteroidOS/asteroid-launcher/HEAD/src/qml/misc/Splash.qml -------------------------------------------------------------------------------- /src/qml/misc/USBModeSelector.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AsteroidOS/asteroid-launcher/HEAD/src/qml/misc/USBModeSelector.qml -------------------------------------------------------------------------------- /src/qml/misc/VolumeControl.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AsteroidOS/asteroid-launcher/HEAD/src/qml/misc/VolumeControl.qml -------------------------------------------------------------------------------- /src/qml/misc/desktop.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AsteroidOS/asteroid-launcher/HEAD/src/qml/misc/desktop.js -------------------------------------------------------------------------------- /src/qml/notifications/NotificationActions.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AsteroidOS/asteroid-launcher/HEAD/src/qml/notifications/NotificationActions.qml -------------------------------------------------------------------------------- /src/qml/notifications/NotificationButton.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AsteroidOS/asteroid-launcher/HEAD/src/qml/notifications/NotificationButton.qml -------------------------------------------------------------------------------- /src/qml/notifications/NotificationIndicator.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AsteroidOS/asteroid-launcher/HEAD/src/qml/notifications/NotificationIndicator.qml -------------------------------------------------------------------------------- /src/qml/notifications/NotificationPreview.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AsteroidOS/asteroid-launcher/HEAD/src/qml/notifications/NotificationPreview.qml -------------------------------------------------------------------------------- /src/qml/notifications/NotificationView.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AsteroidOS/asteroid-launcher/HEAD/src/qml/notifications/NotificationView.qml -------------------------------------------------------------------------------- /src/qml/notifications/NotificationsPanel.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AsteroidOS/asteroid-launcher/HEAD/src/qml/notifications/NotificationsPanel.qml -------------------------------------------------------------------------------- /src/qml/quicksettings/QuickSettings.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AsteroidOS/asteroid-launcher/HEAD/src/qml/quicksettings/QuickSettings.qml -------------------------------------------------------------------------------- /src/qml/quicksettings/QuickSettingsToggle.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AsteroidOS/asteroid-launcher/HEAD/src/qml/quicksettings/QuickSettingsToggle.qml -------------------------------------------------------------------------------- /src/qml/today/Today.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AsteroidOS/asteroid-launcher/HEAD/src/qml/today/Today.qml -------------------------------------------------------------------------------- /src/qml/today/weathericons.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AsteroidOS/asteroid-launcher/HEAD/src/qml/today/weathericons.js -------------------------------------------------------------------------------- /src/resources-qml.qrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AsteroidOS/asteroid-launcher/HEAD/src/resources-qml.qrc -------------------------------------------------------------------------------- /src/watchfaces-img/analog-aviator-hour-ambient.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AsteroidOS/asteroid-launcher/HEAD/src/watchfaces-img/analog-aviator-hour-ambient.svg -------------------------------------------------------------------------------- /src/watchfaces-img/analog-aviator-hour.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AsteroidOS/asteroid-launcher/HEAD/src/watchfaces-img/analog-aviator-hour.svg -------------------------------------------------------------------------------- /src/watchfaces-img/analog-aviator-minute-ambient.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AsteroidOS/asteroid-launcher/HEAD/src/watchfaces-img/analog-aviator-minute-ambient.svg -------------------------------------------------------------------------------- /src/watchfaces-img/analog-aviator-minute.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AsteroidOS/asteroid-launcher/HEAD/src/watchfaces-img/analog-aviator-minute.svg -------------------------------------------------------------------------------- /src/watchfaces-img/analog-aviator-second-ambient.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AsteroidOS/asteroid-launcher/HEAD/src/watchfaces-img/analog-aviator-second-ambient.svg -------------------------------------------------------------------------------- /src/watchfaces-img/analog-aviator-second.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AsteroidOS/asteroid-launcher/HEAD/src/watchfaces-img/analog-aviator-second.svg -------------------------------------------------------------------------------- /src/watchfaces-img/analog-circle-shades-hour.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AsteroidOS/asteroid-launcher/HEAD/src/watchfaces-img/analog-circle-shades-hour.svg -------------------------------------------------------------------------------- /src/watchfaces-img/analog-circle-shades-minute.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AsteroidOS/asteroid-launcher/HEAD/src/watchfaces-img/analog-circle-shades-minute.svg -------------------------------------------------------------------------------- /src/watchfaces-img/analog-circle-shades-second.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AsteroidOS/asteroid-launcher/HEAD/src/watchfaces-img/analog-circle-shades-second.svg -------------------------------------------------------------------------------- /src/watchfaces-img/analog-scientific-v2-hour-bw.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AsteroidOS/asteroid-launcher/HEAD/src/watchfaces-img/analog-scientific-v2-hour-bw.svg -------------------------------------------------------------------------------- /src/watchfaces-img/analog-scientific-v2-hour.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AsteroidOS/asteroid-launcher/HEAD/src/watchfaces-img/analog-scientific-v2-hour.svg -------------------------------------------------------------------------------- /src/watchfaces-img/analog-scientific-v2-minute-bw.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AsteroidOS/asteroid-launcher/HEAD/src/watchfaces-img/analog-scientific-v2-minute-bw.svg -------------------------------------------------------------------------------- /src/watchfaces-img/analog-scientific-v2-minute.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AsteroidOS/asteroid-launcher/HEAD/src/watchfaces-img/analog-scientific-v2-minute.svg -------------------------------------------------------------------------------- /src/watchfaces-img/analog-scientific-v2-second.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AsteroidOS/asteroid-launcher/HEAD/src/watchfaces-img/analog-scientific-v2-second.svg -------------------------------------------------------------------------------- /src/watchfaces-img/analog-weather-satellite-hour-12h.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AsteroidOS/asteroid-launcher/HEAD/src/watchfaces-img/analog-weather-satellite-hour-12h.svg -------------------------------------------------------------------------------- /src/watchfaces-img/analog-weather-satellite-minute.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AsteroidOS/asteroid-launcher/HEAD/src/watchfaces-img/analog-weather-satellite-minute.svg -------------------------------------------------------------------------------- /src/watchfaces-img/analog-weather-satellite-second.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AsteroidOS/asteroid-launcher/HEAD/src/watchfaces-img/analog-weather-satellite-second.svg -------------------------------------------------------------------------------- /src/watchfaces-img/asteroid-logo-black.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AsteroidOS/asteroid-launcher/HEAD/src/watchfaces-img/asteroid-logo-black.svg -------------------------------------------------------------------------------- /src/watchfaces-img/asteroid-logo-white.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AsteroidOS/asteroid-launcher/HEAD/src/watchfaces-img/asteroid-logo-white.svg -------------------------------------------------------------------------------- /src/watchfaces-img/asteroid-logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AsteroidOS/asteroid-launcher/HEAD/src/watchfaces-img/asteroid-logo.svg -------------------------------------------------------------------------------- /src/watchfaces-img/funky-town-words-01-bw.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AsteroidOS/asteroid-launcher/HEAD/src/watchfaces-img/funky-town-words-01-bw.svg -------------------------------------------------------------------------------- /src/watchfaces-img/funky-town-words-01.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AsteroidOS/asteroid-launcher/HEAD/src/watchfaces-img/funky-town-words-01.svg -------------------------------------------------------------------------------- /src/watchfaces-img/funky-town-words-02-bw.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AsteroidOS/asteroid-launcher/HEAD/src/watchfaces-img/funky-town-words-02-bw.svg -------------------------------------------------------------------------------- /src/watchfaces-img/funky-town-words-02.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AsteroidOS/asteroid-launcher/HEAD/src/watchfaces-img/funky-town-words-02.svg -------------------------------------------------------------------------------- /src/watchfaces-img/funky-town-words-03-bw.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AsteroidOS/asteroid-launcher/HEAD/src/watchfaces-img/funky-town-words-03-bw.svg -------------------------------------------------------------------------------- /src/watchfaces-img/funky-town-words-03.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AsteroidOS/asteroid-launcher/HEAD/src/watchfaces-img/funky-town-words-03.svg -------------------------------------------------------------------------------- /src/watchfaces-img/funky-town-words-04-bw.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AsteroidOS/asteroid-launcher/HEAD/src/watchfaces-img/funky-town-words-04-bw.svg -------------------------------------------------------------------------------- /src/watchfaces-img/funky-town-words-04.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AsteroidOS/asteroid-launcher/HEAD/src/watchfaces-img/funky-town-words-04.svg -------------------------------------------------------------------------------- /src/watchfaces-img/funky-town-words-05-bw.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AsteroidOS/asteroid-launcher/HEAD/src/watchfaces-img/funky-town-words-05-bw.svg -------------------------------------------------------------------------------- /src/watchfaces-img/funky-town-words-05.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AsteroidOS/asteroid-launcher/HEAD/src/watchfaces-img/funky-town-words-05.svg -------------------------------------------------------------------------------- /src/watchfaces-img/funky-town-words-06-bw.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AsteroidOS/asteroid-launcher/HEAD/src/watchfaces-img/funky-town-words-06-bw.svg -------------------------------------------------------------------------------- /src/watchfaces-img/funky-town-words-06.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AsteroidOS/asteroid-launcher/HEAD/src/watchfaces-img/funky-town-words-06.svg -------------------------------------------------------------------------------- /src/watchfaces-img/funky-town-words-07-bw.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AsteroidOS/asteroid-launcher/HEAD/src/watchfaces-img/funky-town-words-07-bw.svg -------------------------------------------------------------------------------- /src/watchfaces-img/funky-town-words-07.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AsteroidOS/asteroid-launcher/HEAD/src/watchfaces-img/funky-town-words-07.svg -------------------------------------------------------------------------------- /src/watchfaces-img/funky-town-words-08-bw.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AsteroidOS/asteroid-launcher/HEAD/src/watchfaces-img/funky-town-words-08-bw.svg -------------------------------------------------------------------------------- /src/watchfaces-img/funky-town-words-08.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AsteroidOS/asteroid-launcher/HEAD/src/watchfaces-img/funky-town-words-08.svg -------------------------------------------------------------------------------- /src/watchfaces-img/funky-town-words-09-bw.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AsteroidOS/asteroid-launcher/HEAD/src/watchfaces-img/funky-town-words-09-bw.svg -------------------------------------------------------------------------------- /src/watchfaces-img/funky-town-words-09.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AsteroidOS/asteroid-launcher/HEAD/src/watchfaces-img/funky-town-words-09.svg -------------------------------------------------------------------------------- /src/watchfaces-img/funky-town-words-10-bw.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AsteroidOS/asteroid-launcher/HEAD/src/watchfaces-img/funky-town-words-10-bw.svg -------------------------------------------------------------------------------- /src/watchfaces-img/funky-town-words-10.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AsteroidOS/asteroid-launcher/HEAD/src/watchfaces-img/funky-town-words-10.svg -------------------------------------------------------------------------------- /src/watchfaces-img/funky-town-words-11-bw.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AsteroidOS/asteroid-launcher/HEAD/src/watchfaces-img/funky-town-words-11-bw.svg -------------------------------------------------------------------------------- /src/watchfaces-img/funky-town-words-11.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AsteroidOS/asteroid-launcher/HEAD/src/watchfaces-img/funky-town-words-11.svg -------------------------------------------------------------------------------- /src/watchfaces-img/funky-town-words-12-bw.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AsteroidOS/asteroid-launcher/HEAD/src/watchfaces-img/funky-town-words-12-bw.svg -------------------------------------------------------------------------------- /src/watchfaces-img/funky-town-words-12.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AsteroidOS/asteroid-launcher/HEAD/src/watchfaces-img/funky-town-words-12.svg -------------------------------------------------------------------------------- /src/watchfaces-img/funky-town-words-am.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AsteroidOS/asteroid-launcher/HEAD/src/watchfaces-img/funky-town-words-am.svg -------------------------------------------------------------------------------- /src/watchfaces-img/funky-town-words-pm.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AsteroidOS/asteroid-launcher/HEAD/src/watchfaces-img/funky-town-words-pm.svg -------------------------------------------------------------------------------- /src/watchfaces-img/numerals-duo-synth-neon-green-0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AsteroidOS/asteroid-launcher/HEAD/src/watchfaces-img/numerals-duo-synth-neon-green-0.png -------------------------------------------------------------------------------- /src/watchfaces-img/numerals-duo-synth-neon-green-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AsteroidOS/asteroid-launcher/HEAD/src/watchfaces-img/numerals-duo-synth-neon-green-1.png -------------------------------------------------------------------------------- /src/watchfaces-img/numerals-duo-synth-neon-green-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AsteroidOS/asteroid-launcher/HEAD/src/watchfaces-img/numerals-duo-synth-neon-green-2.png -------------------------------------------------------------------------------- /src/watchfaces-img/numerals-duo-synth-neon-green-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AsteroidOS/asteroid-launcher/HEAD/src/watchfaces-img/numerals-duo-synth-neon-green-3.png -------------------------------------------------------------------------------- /src/watchfaces-img/numerals-duo-synth-neon-green-4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AsteroidOS/asteroid-launcher/HEAD/src/watchfaces-img/numerals-duo-synth-neon-green-4.png -------------------------------------------------------------------------------- /src/watchfaces-img/numerals-duo-synth-neon-green-5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AsteroidOS/asteroid-launcher/HEAD/src/watchfaces-img/numerals-duo-synth-neon-green-5.png -------------------------------------------------------------------------------- /src/watchfaces-img/numerals-duo-synth-neon-green-6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AsteroidOS/asteroid-launcher/HEAD/src/watchfaces-img/numerals-duo-synth-neon-green-6.png -------------------------------------------------------------------------------- /src/watchfaces-img/numerals-duo-synth-neon-green-7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AsteroidOS/asteroid-launcher/HEAD/src/watchfaces-img/numerals-duo-synth-neon-green-7.png -------------------------------------------------------------------------------- /src/watchfaces-img/numerals-duo-synth-neon-green-8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AsteroidOS/asteroid-launcher/HEAD/src/watchfaces-img/numerals-duo-synth-neon-green-8.png -------------------------------------------------------------------------------- /src/watchfaces-img/numerals-duo-synth-neon-green-9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AsteroidOS/asteroid-launcher/HEAD/src/watchfaces-img/numerals-duo-synth-neon-green-9.png -------------------------------------------------------------------------------- /src/watchfaces-preview/112/000-default-digital.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AsteroidOS/asteroid-launcher/HEAD/src/watchfaces-preview/112/000-default-digital.png -------------------------------------------------------------------------------- /src/watchfaces-preview/112/002-analog-70s-classic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AsteroidOS/asteroid-launcher/HEAD/src/watchfaces-preview/112/002-analog-70s-classic.png -------------------------------------------------------------------------------- /src/watchfaces-preview/112/003-alternative-digital-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AsteroidOS/asteroid-launcher/HEAD/src/watchfaces-preview/112/003-alternative-digital-2.png -------------------------------------------------------------------------------- /src/watchfaces-preview/112/004-alternative-scifi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AsteroidOS/asteroid-launcher/HEAD/src/watchfaces-preview/112/004-alternative-scifi.png -------------------------------------------------------------------------------- /src/watchfaces-preview/112/005-analog-circle-shades.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AsteroidOS/asteroid-launcher/HEAD/src/watchfaces-preview/112/005-analog-circle-shades.png -------------------------------------------------------------------------------- /src/watchfaces-preview/112/006-analog-weather-satellite.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AsteroidOS/asteroid-launcher/HEAD/src/watchfaces-preview/112/006-analog-weather-satellite.png -------------------------------------------------------------------------------- /src/watchfaces-preview/112/007-digital-outfit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AsteroidOS/asteroid-launcher/HEAD/src/watchfaces-preview/112/007-digital-outfit.png -------------------------------------------------------------------------------- /src/watchfaces-preview/112/008-numerals-duo-synth-neon-green.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AsteroidOS/asteroid-launcher/HEAD/src/watchfaces-preview/112/008-numerals-duo-synth-neon-green.png -------------------------------------------------------------------------------- /src/watchfaces-preview/112/009-analog-scientific-v2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AsteroidOS/asteroid-launcher/HEAD/src/watchfaces-preview/112/009-analog-scientific-v2.png -------------------------------------------------------------------------------- /src/watchfaces-preview/112/010-analog-aviator.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AsteroidOS/asteroid-launcher/HEAD/src/watchfaces-preview/112/010-analog-aviator.png -------------------------------------------------------------------------------- /src/watchfaces-preview/112/011-bold-hour-bebas.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AsteroidOS/asteroid-launcher/HEAD/src/watchfaces-preview/112/011-bold-hour-bebas.png -------------------------------------------------------------------------------- /src/watchfaces-preview/112/012-analog-words.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AsteroidOS/asteroid-launcher/HEAD/src/watchfaces-preview/112/012-analog-words.png -------------------------------------------------------------------------------- /src/watchfaces-preview/112/013-analog-nordic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AsteroidOS/asteroid-launcher/HEAD/src/watchfaces-preview/112/013-analog-nordic.png -------------------------------------------------------------------------------- /src/watchfaces-preview/112/014-analog-50s-americana.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AsteroidOS/asteroid-launcher/HEAD/src/watchfaces-preview/112/014-analog-50s-americana.png -------------------------------------------------------------------------------- /src/watchfaces-preview/112/015-funky-town-words.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AsteroidOS/asteroid-launcher/HEAD/src/watchfaces-preview/112/015-funky-town-words.png -------------------------------------------------------------------------------- /src/watchfaces-preview/112/016-masked-spartan.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AsteroidOS/asteroid-launcher/HEAD/src/watchfaces-preview/112/016-masked-spartan.png -------------------------------------------------------------------------------- /src/watchfaces-preview/112/017-contemporary-digital-rings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AsteroidOS/asteroid-launcher/HEAD/src/watchfaces-preview/112/017-contemporary-digital-rings.png -------------------------------------------------------------------------------- /src/watchfaces-preview/128/000-default-digital.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AsteroidOS/asteroid-launcher/HEAD/src/watchfaces-preview/128/000-default-digital.png -------------------------------------------------------------------------------- /src/watchfaces-preview/128/002-analog-70s-classic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AsteroidOS/asteroid-launcher/HEAD/src/watchfaces-preview/128/002-analog-70s-classic.png -------------------------------------------------------------------------------- /src/watchfaces-preview/128/003-alternative-digital-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AsteroidOS/asteroid-launcher/HEAD/src/watchfaces-preview/128/003-alternative-digital-2.png -------------------------------------------------------------------------------- /src/watchfaces-preview/128/004-alternative-scifi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AsteroidOS/asteroid-launcher/HEAD/src/watchfaces-preview/128/004-alternative-scifi.png -------------------------------------------------------------------------------- /src/watchfaces-preview/128/005-analog-circle-shades.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AsteroidOS/asteroid-launcher/HEAD/src/watchfaces-preview/128/005-analog-circle-shades.png -------------------------------------------------------------------------------- /src/watchfaces-preview/128/006-analog-weather-satellite.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AsteroidOS/asteroid-launcher/HEAD/src/watchfaces-preview/128/006-analog-weather-satellite.png -------------------------------------------------------------------------------- /src/watchfaces-preview/128/007-digital-outfit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AsteroidOS/asteroid-launcher/HEAD/src/watchfaces-preview/128/007-digital-outfit.png -------------------------------------------------------------------------------- /src/watchfaces-preview/128/008-numerals-duo-synth-neon-green.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AsteroidOS/asteroid-launcher/HEAD/src/watchfaces-preview/128/008-numerals-duo-synth-neon-green.png -------------------------------------------------------------------------------- /src/watchfaces-preview/128/009-analog-scientific-v2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AsteroidOS/asteroid-launcher/HEAD/src/watchfaces-preview/128/009-analog-scientific-v2.png -------------------------------------------------------------------------------- /src/watchfaces-preview/128/010-analog-aviator.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AsteroidOS/asteroid-launcher/HEAD/src/watchfaces-preview/128/010-analog-aviator.png -------------------------------------------------------------------------------- /src/watchfaces-preview/128/011-bold-hour-bebas.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AsteroidOS/asteroid-launcher/HEAD/src/watchfaces-preview/128/011-bold-hour-bebas.png -------------------------------------------------------------------------------- /src/watchfaces-preview/128/012-analog-words.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AsteroidOS/asteroid-launcher/HEAD/src/watchfaces-preview/128/012-analog-words.png -------------------------------------------------------------------------------- /src/watchfaces-preview/128/013-analog-nordic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AsteroidOS/asteroid-launcher/HEAD/src/watchfaces-preview/128/013-analog-nordic.png -------------------------------------------------------------------------------- /src/watchfaces-preview/128/014-analog-50s-americana.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AsteroidOS/asteroid-launcher/HEAD/src/watchfaces-preview/128/014-analog-50s-americana.png -------------------------------------------------------------------------------- /src/watchfaces-preview/128/015-funky-town-words.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AsteroidOS/asteroid-launcher/HEAD/src/watchfaces-preview/128/015-funky-town-words.png -------------------------------------------------------------------------------- /src/watchfaces-preview/128/016-masked-spartan.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AsteroidOS/asteroid-launcher/HEAD/src/watchfaces-preview/128/016-masked-spartan.png -------------------------------------------------------------------------------- /src/watchfaces-preview/128/017-contemporary-digital-rings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AsteroidOS/asteroid-launcher/HEAD/src/watchfaces-preview/128/017-contemporary-digital-rings.png -------------------------------------------------------------------------------- /src/watchfaces-preview/144/000-default-digital.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AsteroidOS/asteroid-launcher/HEAD/src/watchfaces-preview/144/000-default-digital.png -------------------------------------------------------------------------------- /src/watchfaces-preview/144/002-analog-70s-classic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AsteroidOS/asteroid-launcher/HEAD/src/watchfaces-preview/144/002-analog-70s-classic.png -------------------------------------------------------------------------------- /src/watchfaces-preview/144/003-alternative-digital-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AsteroidOS/asteroid-launcher/HEAD/src/watchfaces-preview/144/003-alternative-digital-2.png -------------------------------------------------------------------------------- /src/watchfaces-preview/144/004-alternative-scifi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AsteroidOS/asteroid-launcher/HEAD/src/watchfaces-preview/144/004-alternative-scifi.png -------------------------------------------------------------------------------- /src/watchfaces-preview/144/005-analog-circle-shades.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AsteroidOS/asteroid-launcher/HEAD/src/watchfaces-preview/144/005-analog-circle-shades.png -------------------------------------------------------------------------------- /src/watchfaces-preview/144/006-analog-weather-satellite.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AsteroidOS/asteroid-launcher/HEAD/src/watchfaces-preview/144/006-analog-weather-satellite.png -------------------------------------------------------------------------------- /src/watchfaces-preview/144/007-digital-outfit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AsteroidOS/asteroid-launcher/HEAD/src/watchfaces-preview/144/007-digital-outfit.png -------------------------------------------------------------------------------- /src/watchfaces-preview/144/008-numerals-duo-synth-neon-green.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AsteroidOS/asteroid-launcher/HEAD/src/watchfaces-preview/144/008-numerals-duo-synth-neon-green.png -------------------------------------------------------------------------------- /src/watchfaces-preview/144/009-analog-scientific-v2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AsteroidOS/asteroid-launcher/HEAD/src/watchfaces-preview/144/009-analog-scientific-v2.png -------------------------------------------------------------------------------- /src/watchfaces-preview/144/010-analog-aviator.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AsteroidOS/asteroid-launcher/HEAD/src/watchfaces-preview/144/010-analog-aviator.png -------------------------------------------------------------------------------- /src/watchfaces-preview/144/011-bold-hour-bebas.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AsteroidOS/asteroid-launcher/HEAD/src/watchfaces-preview/144/011-bold-hour-bebas.png -------------------------------------------------------------------------------- /src/watchfaces-preview/144/012-analog-words.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AsteroidOS/asteroid-launcher/HEAD/src/watchfaces-preview/144/012-analog-words.png -------------------------------------------------------------------------------- /src/watchfaces-preview/144/013-analog-nordic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AsteroidOS/asteroid-launcher/HEAD/src/watchfaces-preview/144/013-analog-nordic.png -------------------------------------------------------------------------------- /src/watchfaces-preview/144/014-analog-50s-americana.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AsteroidOS/asteroid-launcher/HEAD/src/watchfaces-preview/144/014-analog-50s-americana.png -------------------------------------------------------------------------------- /src/watchfaces-preview/144/015-funky-town-words.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AsteroidOS/asteroid-launcher/HEAD/src/watchfaces-preview/144/015-funky-town-words.png -------------------------------------------------------------------------------- /src/watchfaces-preview/144/016-masked-spartan.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AsteroidOS/asteroid-launcher/HEAD/src/watchfaces-preview/144/016-masked-spartan.png -------------------------------------------------------------------------------- /src/watchfaces-preview/144/017-contemporary-digital-rings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AsteroidOS/asteroid-launcher/HEAD/src/watchfaces-preview/144/017-contemporary-digital-rings.png -------------------------------------------------------------------------------- /src/watchfaces-preview/160/000-default-digital.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AsteroidOS/asteroid-launcher/HEAD/src/watchfaces-preview/160/000-default-digital.png -------------------------------------------------------------------------------- /src/watchfaces-preview/160/002-analog-70s-classic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AsteroidOS/asteroid-launcher/HEAD/src/watchfaces-preview/160/002-analog-70s-classic.png -------------------------------------------------------------------------------- /src/watchfaces-preview/160/003-alternative-digital-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AsteroidOS/asteroid-launcher/HEAD/src/watchfaces-preview/160/003-alternative-digital-2.png -------------------------------------------------------------------------------- /src/watchfaces-preview/160/004-alternative-scifi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AsteroidOS/asteroid-launcher/HEAD/src/watchfaces-preview/160/004-alternative-scifi.png -------------------------------------------------------------------------------- /src/watchfaces-preview/160/005-analog-circle-shades.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AsteroidOS/asteroid-launcher/HEAD/src/watchfaces-preview/160/005-analog-circle-shades.png -------------------------------------------------------------------------------- /src/watchfaces-preview/160/006-analog-weather-satellite.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AsteroidOS/asteroid-launcher/HEAD/src/watchfaces-preview/160/006-analog-weather-satellite.png -------------------------------------------------------------------------------- /src/watchfaces-preview/160/007-digital-outfit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AsteroidOS/asteroid-launcher/HEAD/src/watchfaces-preview/160/007-digital-outfit.png -------------------------------------------------------------------------------- /src/watchfaces-preview/160/008-numerals-duo-synth-neon-green.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AsteroidOS/asteroid-launcher/HEAD/src/watchfaces-preview/160/008-numerals-duo-synth-neon-green.png -------------------------------------------------------------------------------- /src/watchfaces-preview/160/009-analog-scientific-v2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AsteroidOS/asteroid-launcher/HEAD/src/watchfaces-preview/160/009-analog-scientific-v2.png -------------------------------------------------------------------------------- /src/watchfaces-preview/160/010-analog-aviator.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AsteroidOS/asteroid-launcher/HEAD/src/watchfaces-preview/160/010-analog-aviator.png -------------------------------------------------------------------------------- /src/watchfaces-preview/160/011-bold-hour-bebas.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AsteroidOS/asteroid-launcher/HEAD/src/watchfaces-preview/160/011-bold-hour-bebas.png -------------------------------------------------------------------------------- /src/watchfaces-preview/160/012-analog-words.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AsteroidOS/asteroid-launcher/HEAD/src/watchfaces-preview/160/012-analog-words.png -------------------------------------------------------------------------------- /src/watchfaces-preview/160/013-analog-nordic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AsteroidOS/asteroid-launcher/HEAD/src/watchfaces-preview/160/013-analog-nordic.png -------------------------------------------------------------------------------- /src/watchfaces-preview/160/014-analog-50s-americana.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AsteroidOS/asteroid-launcher/HEAD/src/watchfaces-preview/160/014-analog-50s-americana.png -------------------------------------------------------------------------------- /src/watchfaces-preview/160/015-funky-town-words.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AsteroidOS/asteroid-launcher/HEAD/src/watchfaces-preview/160/015-funky-town-words.png -------------------------------------------------------------------------------- /src/watchfaces-preview/160/016-masked-spartan.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AsteroidOS/asteroid-launcher/HEAD/src/watchfaces-preview/160/016-masked-spartan.png -------------------------------------------------------------------------------- /src/watchfaces-preview/160/017-contemporary-digital-rings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AsteroidOS/asteroid-launcher/HEAD/src/watchfaces-preview/160/017-contemporary-digital-rings.png -------------------------------------------------------------------------------- /src/watchfaces-preview/182/000-default-digital.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AsteroidOS/asteroid-launcher/HEAD/src/watchfaces-preview/182/000-default-digital.png -------------------------------------------------------------------------------- /src/watchfaces-preview/182/002-analog-70s-classic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AsteroidOS/asteroid-launcher/HEAD/src/watchfaces-preview/182/002-analog-70s-classic.png -------------------------------------------------------------------------------- /src/watchfaces-preview/182/003-alternative-digital-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AsteroidOS/asteroid-launcher/HEAD/src/watchfaces-preview/182/003-alternative-digital-2.png -------------------------------------------------------------------------------- /src/watchfaces-preview/182/004-alternative-scifi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AsteroidOS/asteroid-launcher/HEAD/src/watchfaces-preview/182/004-alternative-scifi.png -------------------------------------------------------------------------------- /src/watchfaces-preview/182/005-analog-circle-shades.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AsteroidOS/asteroid-launcher/HEAD/src/watchfaces-preview/182/005-analog-circle-shades.png -------------------------------------------------------------------------------- /src/watchfaces-preview/182/006-analog-weather-satellite.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AsteroidOS/asteroid-launcher/HEAD/src/watchfaces-preview/182/006-analog-weather-satellite.png -------------------------------------------------------------------------------- /src/watchfaces-preview/182/007-digital-outfit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AsteroidOS/asteroid-launcher/HEAD/src/watchfaces-preview/182/007-digital-outfit.png -------------------------------------------------------------------------------- /src/watchfaces-preview/182/008-numerals-duo-synth-neon-green.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AsteroidOS/asteroid-launcher/HEAD/src/watchfaces-preview/182/008-numerals-duo-synth-neon-green.png -------------------------------------------------------------------------------- /src/watchfaces-preview/182/009-analog-scientific-v2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AsteroidOS/asteroid-launcher/HEAD/src/watchfaces-preview/182/009-analog-scientific-v2.png -------------------------------------------------------------------------------- /src/watchfaces-preview/182/010-analog-aviator.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AsteroidOS/asteroid-launcher/HEAD/src/watchfaces-preview/182/010-analog-aviator.png -------------------------------------------------------------------------------- /src/watchfaces-preview/182/011-bold-hour-bebas.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AsteroidOS/asteroid-launcher/HEAD/src/watchfaces-preview/182/011-bold-hour-bebas.png -------------------------------------------------------------------------------- /src/watchfaces-preview/182/012-analog-words.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AsteroidOS/asteroid-launcher/HEAD/src/watchfaces-preview/182/012-analog-words.png -------------------------------------------------------------------------------- /src/watchfaces-preview/182/013-analog-nordic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AsteroidOS/asteroid-launcher/HEAD/src/watchfaces-preview/182/013-analog-nordic.png -------------------------------------------------------------------------------- /src/watchfaces-preview/182/014-analog-50s-americana.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AsteroidOS/asteroid-launcher/HEAD/src/watchfaces-preview/182/014-analog-50s-americana.png -------------------------------------------------------------------------------- /src/watchfaces-preview/182/015-funky-town-words.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AsteroidOS/asteroid-launcher/HEAD/src/watchfaces-preview/182/015-funky-town-words.png -------------------------------------------------------------------------------- /src/watchfaces-preview/182/016-masked-spartan.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AsteroidOS/asteroid-launcher/HEAD/src/watchfaces-preview/182/016-masked-spartan.png -------------------------------------------------------------------------------- /src/watchfaces-preview/182/017-contemporary-digital-rings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AsteroidOS/asteroid-launcher/HEAD/src/watchfaces-preview/182/017-contemporary-digital-rings.png -------------------------------------------------------------------------------- /src/watchfaces/000-default-digital.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AsteroidOS/asteroid-launcher/HEAD/src/watchfaces/000-default-digital.qml -------------------------------------------------------------------------------- /src/watchfaces/001-words-worte-palabras-mots.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AsteroidOS/asteroid-launcher/HEAD/src/watchfaces/001-words-worte-palabras-mots.qml -------------------------------------------------------------------------------- /src/watchfaces/002-analog-70s-classic.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AsteroidOS/asteroid-launcher/HEAD/src/watchfaces/002-analog-70s-classic.qml -------------------------------------------------------------------------------- /src/watchfaces/003-alternative-digital-2.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AsteroidOS/asteroid-launcher/HEAD/src/watchfaces/003-alternative-digital-2.qml -------------------------------------------------------------------------------- /src/watchfaces/004-alternative-scifi.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AsteroidOS/asteroid-launcher/HEAD/src/watchfaces/004-alternative-scifi.qml -------------------------------------------------------------------------------- /src/watchfaces/005-analog-circle-shades.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AsteroidOS/asteroid-launcher/HEAD/src/watchfaces/005-analog-circle-shades.qml -------------------------------------------------------------------------------- /src/watchfaces/006-analog-weather-satellite.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AsteroidOS/asteroid-launcher/HEAD/src/watchfaces/006-analog-weather-satellite.qml -------------------------------------------------------------------------------- /src/watchfaces/007-digital-outfit.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AsteroidOS/asteroid-launcher/HEAD/src/watchfaces/007-digital-outfit.qml -------------------------------------------------------------------------------- /src/watchfaces/008-numerals-duo-synth-neon-green.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AsteroidOS/asteroid-launcher/HEAD/src/watchfaces/008-numerals-duo-synth-neon-green.qml -------------------------------------------------------------------------------- /src/watchfaces/009-analog-scientific-v2.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AsteroidOS/asteroid-launcher/HEAD/src/watchfaces/009-analog-scientific-v2.qml -------------------------------------------------------------------------------- /src/watchfaces/010-analog-aviator.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AsteroidOS/asteroid-launcher/HEAD/src/watchfaces/010-analog-aviator.qml -------------------------------------------------------------------------------- /src/watchfaces/011-bold-hour-bebas.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AsteroidOS/asteroid-launcher/HEAD/src/watchfaces/011-bold-hour-bebas.qml -------------------------------------------------------------------------------- /src/watchfaces/012-analog-words.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AsteroidOS/asteroid-launcher/HEAD/src/watchfaces/012-analog-words.qml -------------------------------------------------------------------------------- /src/watchfaces/013-analog-nordic.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AsteroidOS/asteroid-launcher/HEAD/src/watchfaces/013-analog-nordic.qml -------------------------------------------------------------------------------- /src/watchfaces/014-analog-50s-americana.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AsteroidOS/asteroid-launcher/HEAD/src/watchfaces/014-analog-50s-americana.qml -------------------------------------------------------------------------------- /src/watchfaces/015-funky-town-words.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AsteroidOS/asteroid-launcher/HEAD/src/watchfaces/015-funky-town-words.qml -------------------------------------------------------------------------------- /src/watchfaces/016-masked-spartan.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AsteroidOS/asteroid-launcher/HEAD/src/watchfaces/016-masked-spartan.qml -------------------------------------------------------------------------------- /src/watchfaces/017-contemporary-digital-rings.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AsteroidOS/asteroid-launcher/HEAD/src/watchfaces/017-contemporary-digital-rings.qml -------------------------------------------------------------------------------- /src/watchfaces/weathericons.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AsteroidOS/asteroid-launcher/HEAD/src/watchfaces/weathericons.js --------------------------------------------------------------------------------