├── .github └── workflows │ ├── build.yml │ └── sync-version-with-upstream.yml ├── README.md └── snap ├── gui ├── spot.desktop └── spot.svg └── snapcraft.yaml /.github/workflows/build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popey/spot-snap/HEAD/.github/workflows/build.yml -------------------------------------------------------------------------------- /.github/workflows/sync-version-with-upstream.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popey/spot-snap/HEAD/.github/workflows/sync-version-with-upstream.yml -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popey/spot-snap/HEAD/README.md -------------------------------------------------------------------------------- /snap/gui/spot.desktop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popey/spot-snap/HEAD/snap/gui/spot.desktop -------------------------------------------------------------------------------- /snap/gui/spot.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popey/spot-snap/HEAD/snap/gui/spot.svg -------------------------------------------------------------------------------- /snap/snapcraft.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popey/spot-snap/HEAD/snap/snapcraft.yaml --------------------------------------------------------------------------------