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

https://github.com/rosendo-martinez/screensaver

A screensaver desktop application.
https://github.com/rosendo-martinez/screensaver

Last synced: 3 months ago
JSON representation

A screensaver desktop application.

Awesome Lists containing this project

README

        

# Screensaver

This project is screensaver desktop application (check out screenshots bellow).

This project uses:
- c++
- SFML
- gcc

# How to build and run project

Note, you need SFML to run this project.

First, compile main:

```
$ g++ -c main.cpp
```

Second, link main with libraries and create executable:

```
$ g++ main.o -o screensaver -lsfml-graphics -lsfml-window -lsfml-system
```

Finally, run it:

```
$ ./screensaver
```

# Screenshots

![screenshot 1](./imgs/sc1.png)

![screenshot 2](./imgs/sc2.png)

![screenshot 3](./imgs/sc3.png)