The program takes a picture from the NASA [website](https://apod.nasa.gov/apod) every day
and sets it as a background for your workspace.
---
### Contents
- Solution or answers to possible problems [Windows](#windows) / [Linux](#linux)
- [Build project](#build-project)
---
| OS | Status | Latest version | Download |
|---------|-------------|----------------|-------------------------------------------------------------------------------------|
| Windows | Available | 2.0-beta | [.msi](https://github.com/Redume/EveryNasa/releases/download/v2.0/EveryNasa.msi) |
| Debian | Available | 1.6 | [Binary file](https://github.com/Redume/EveryNasa/releases/download/v1.6/EveryNasa) |
| Android | Available | 0.3-beta | [Google Play](https://play.google.com/store/apps/details?id=ru.murzify.everynasa) |
| MacOS | Unavailable | | |
| iOS | Unavailable | | |
---
### Solution or answers to possible problems
#### Windows
To make all functions work correctly, install the program anywhere except Program Files(x86) / Program Files
#### Linux
- If you have a mistake with `ayatana-appindicator3-0.1`
Debian / Ubuntu / Mint
KDE Plasma
```shell
$ sudo apt install gir1.2-appindicator3-0.1
```
GNOME
- Install the package
```shell
$ sudo apt install gnome-shell-extension-appindicator
```
- Open `Tweaks`
- Go to `Extensions`
- Enable `Kstatusnotifieritem/appindicator support`
### Build project
- Close the repository
```shell
$ git clone https://github.com/Redume/EveryNasa.git
```
- Change directory
```shell
$ cd EveryNasa
```
- Build project
Windows
```shell
$ go build -o EveryNasa.exe -ldflags = "-H windowsgui"
```
Linux
```shell
$ go build -o EveryNasa
```