├── .gitignore ├── README.md ├── contents ├── config │ └── main.xml └── ui │ ├── animation.gif │ ├── config.qml │ └── main.qml ├── metadata.desktop └── settings.png /.gitignore: -------------------------------------------------------------------------------- 1 | *.qmlc 2 | .git 3 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhanb/com.nerdyweekly.animated/HEAD/README.md -------------------------------------------------------------------------------- /contents/config/main.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhanb/com.nerdyweekly.animated/HEAD/contents/config/main.xml -------------------------------------------------------------------------------- /contents/ui/animation.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhanb/com.nerdyweekly.animated/HEAD/contents/ui/animation.gif -------------------------------------------------------------------------------- /contents/ui/config.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhanb/com.nerdyweekly.animated/HEAD/contents/ui/config.qml -------------------------------------------------------------------------------- /contents/ui/main.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhanb/com.nerdyweekly.animated/HEAD/contents/ui/main.qml -------------------------------------------------------------------------------- /metadata.desktop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhanb/com.nerdyweekly.animated/HEAD/metadata.desktop -------------------------------------------------------------------------------- /settings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhanb/com.nerdyweekly.animated/HEAD/settings.png --------------------------------------------------------------------------------