StarlioX/README.md

91 lines
2.5 KiB
Markdown
Raw Normal View History

2022-10-09 13:22:27 +03:00
<p align="center"><img src="web/static/image/icons/banner.png" alt="EveryNasa banner" title="EveryNasa"></p>
2022-08-22 12:25:46 +03:00
2022-10-09 13:22:27 +03:00
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.
2022-08-25 19:50:38 +03:00
---
2022-10-09 13:22:27 +03:00
### Contents
- Solution or answers to possible problems [Windows](#windows) / [Linux](#linux)
- [Build project](#build-project)
2022-07-12 13:08:45 +03:00
2022-10-09 13:22:27 +03:00
---
2022-08-25 19:50:38 +03:00
2022-10-09 13:22:27 +03:00
| OS | Status | Latest version | Download |
|---------|-------------|----------------|-------------------------------------------------------------------------------------|
2022-10-12 11:12:25 +03:00
| Windows | Available | 2.0 | [.msi](https://github.com/Redume/EveryNasa/releases/download/v2.0/EveryNasa.msi) |
2022-10-09 13:22:27 +03:00
| Debian | Available | 1.6 | [Binary file](https://github.com/Redume/EveryNasa/releases/download/v1.6/EveryNasa) |
2022-10-12 11:12:25 +03:00
| Android | Available | 1.2.1 | [Google Play](https://play.google.com/store/apps/details?id=ru.murzify.everynasa) |
2022-10-09 13:22:27 +03:00
| MacOS | Unavailable | | |
| iOS | Unavailable | | |
2022-08-25 19:50:38 +03:00
---
2022-10-09 13:22:27 +03:00
### Solution or answers to possible problems
#### Windows
<details>
<summary></summary>
<li>To make all functions work correctly, install the program anywhere except Program Files(x86) / Program Files</li>
</details>
#### Linux
<details>
<summary></summary>
- If you have a mistake with `ayatana-appindicator3-0.1`
<details>
<summary><b>Debian / Ubuntu / Mint</b></summary>
<details>
<summary><b>KDE Plasma</b></summary>
```shell
$ sudo apt install gir1.2-appindicator3-0.1
```
</details>
<details>
<summary><b>GNOME</b></summary>
- Install the package
```shell
$ sudo apt install gnome-shell-extension-appindicator
```
2022-08-25 19:50:38 +03:00
2022-10-09 13:22:27 +03:00
- Open `Tweaks`
- Go to `Extensions`
- Enable `Kstatusnotifieritem/appindicator support`
</details>
</details>
</details>
2022-08-25 19:50:38 +03:00
2022-10-09 13:22:27 +03:00
### Build project
2022-08-25 19:50:38 +03:00
2022-10-09 13:22:27 +03:00
<details>
<summary></summary>
- Close the repository
2022-08-25 19:50:38 +03:00
```shell
2022-10-09 13:22:27 +03:00
$ git clone https://github.com/Redume/EveryNasa.git
2022-08-25 19:50:38 +03:00
```
2022-10-09 13:22:27 +03:00
- Change directory
```shell
$ cd EveryNasa
```
- Build project
<details>
<summary><b>Windows</b></summary>
2022-08-25 19:50:38 +03:00
2022-10-09 13:22:27 +03:00
```shell
$ go build -o EveryNasa.exe -ldflags = "-H windowsgui"
```
2022-08-25 19:50:38 +03:00
2022-10-09 13:22:27 +03:00
</details>
<details>
<summary><b>Linux</b></summary>
2022-08-25 19:50:38 +03:00
```shell
2022-10-09 13:22:27 +03:00
$ go build -o EveryNasa
2022-08-25 19:50:38 +03:00
```
2022-10-09 13:22:27 +03:00
</details>
</details>