An open API service indexing awesome lists of open source software.

https://github.com/goto-eof/sbpv

Simple Battery Percentage Viewer is a snap Java application that shows the battery percentage. This project was born with the aim to try to create a snap starting from a Java jar application.
https://github.com/goto-eof/sbpv

snap snapcraft

Last synced: about 1 year ago
JSON representation

Simple Battery Percentage Viewer is a snap Java application that shows the battery percentage. This project was born with the aim to try to create a snap starting from a Java jar application.

Awesome Lists containing this project

README

          

# Simple Battery Percentage Viewer (sbpv)

Snap Java application that shows the battery percentage. This project was born with the aim to try to create a snap
starting from a Swing Java application.

# Technologies and Tools

- Java 11 (SWING, Process)
- snapcraft

# Screenshot

![screenshot](./screenshot/sbpv.png)

# Build snap file

From the project root directory execute the following statements:

```bash
# remove old snap file
sudo rm sbpv_2.0.0_amd64.snap;
# clean and regenerate snap file
sudo snapcraft clean --use-lxd --verbose && sudo snapcraft --use-lxd --debug --verbose;
# unistall snap file
sudo snap remove sbpv;
# install the new generated snap file
sudo snap install sbpv_2.0.0_amd64.snap --dangerous --devmode && sbpv;
```