├── .gitignore ├── LICENSE ├── README.md ├── share ├── applications │ └── formatlab.desktop ├── icons │ └── icon.png ├── license │ └── LICENSE ├── metainfo │ └── com.warlordsoftwares.formatlab.metainfo.xml └── screenshots │ ├── formatlab-warlordsoftwares_1.jpg │ ├── formatlab-warlordsoftwares_2.jpg │ ├── formatlab-warlordsoftwares_3.jpg │ ├── formatlab-warlordsoftwares_4.jpg │ └── formatlab-warlordsoftwares_5.jpg ├── snap ├── gui │ └── icon.png └── snapcraft.yaml └── snap_launcher ├── bin └── desktop-launch └── formatlab.desktop /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rishabh3354/FORMAT_LAB/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rishabh3354/FORMAT_LAB/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rishabh3354/FORMAT_LAB/HEAD/README.md -------------------------------------------------------------------------------- /share/applications/formatlab.desktop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rishabh3354/FORMAT_LAB/HEAD/share/applications/formatlab.desktop -------------------------------------------------------------------------------- /share/icons/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rishabh3354/FORMAT_LAB/HEAD/share/icons/icon.png -------------------------------------------------------------------------------- /share/license/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rishabh3354/FORMAT_LAB/HEAD/share/license/LICENSE -------------------------------------------------------------------------------- /share/metainfo/com.warlordsoftwares.formatlab.metainfo.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rishabh3354/FORMAT_LAB/HEAD/share/metainfo/com.warlordsoftwares.formatlab.metainfo.xml -------------------------------------------------------------------------------- /share/screenshots/formatlab-warlordsoftwares_1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rishabh3354/FORMAT_LAB/HEAD/share/screenshots/formatlab-warlordsoftwares_1.jpg -------------------------------------------------------------------------------- /share/screenshots/formatlab-warlordsoftwares_2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rishabh3354/FORMAT_LAB/HEAD/share/screenshots/formatlab-warlordsoftwares_2.jpg -------------------------------------------------------------------------------- /share/screenshots/formatlab-warlordsoftwares_3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rishabh3354/FORMAT_LAB/HEAD/share/screenshots/formatlab-warlordsoftwares_3.jpg -------------------------------------------------------------------------------- /share/screenshots/formatlab-warlordsoftwares_4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rishabh3354/FORMAT_LAB/HEAD/share/screenshots/formatlab-warlordsoftwares_4.jpg -------------------------------------------------------------------------------- /share/screenshots/formatlab-warlordsoftwares_5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rishabh3354/FORMAT_LAB/HEAD/share/screenshots/formatlab-warlordsoftwares_5.jpg -------------------------------------------------------------------------------- /snap/gui/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rishabh3354/FORMAT_LAB/HEAD/snap/gui/icon.png -------------------------------------------------------------------------------- /snap/snapcraft.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rishabh3354/FORMAT_LAB/HEAD/snap/snapcraft.yaml -------------------------------------------------------------------------------- /snap_launcher/bin/desktop-launch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rishabh3354/FORMAT_LAB/HEAD/snap_launcher/bin/desktop-launch -------------------------------------------------------------------------------- /snap_launcher/formatlab.desktop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rishabh3354/FORMAT_LAB/HEAD/snap_launcher/formatlab.desktop --------------------------------------------------------------------------------