1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224
|
# GOverlay
GOverlay is an open source project aimed to create a Graphical UI to manage Vulkan/OpenGL overlays. It is still in early development, so it lacks a lot of features.
This project was only possible thanks to the other maintainers and contributors that have done the hard work. I am just a Network Engineer that really likes Linux and Gaming.
Table of contents
=================
- [Screenshot](#screenshot)
- [Prerequisites](#prerequisites)
- [Installation](#installation)
- [Distributions](#distributions)
- [Arch / Manjaro / Other Arch derivatives](#arch--manjaro--other-arch-derivatives)
- [Fedora](#fedora)
- [Solus](#solus)
- [Ubuntu](#ubuntu)
- [OpenSUSE](#opensuse)
- [Tarball](#tarball)
- [Source](#source)
- [Prerequisites](#prerequisites-1)
- [Building](#building)
- [Running](#running)
- [Credits](#credits)
- [Donations](#donations)
## Screenshot
<a href="https://ibb.co/PMQ6w3Z"><img src="https://i.ibb.co/Mf6CMWD/goverlay-09-2.jpg" alt="goverlay-09-2" border="0"></a>
<a href="https://ibb.co/7tW4Tz3"><img src="https://i.ibb.co/Zz8mwJQ/goverlay-09-3.jpg" alt="goverlay-09-3" border="0"></a>
<a href="https://ibb.co/CV79rbT"><img src="https://i.ibb.co/BTZ61yS/goverlay-09-4.jpg" alt="goverlay-09-4" border="0"></a>
## Prerequisites
Here are the dependencies needed in order to make GOverlay run:
- [**`mangohud`**](https://github.com/flightlessmango/MangoHud) - Configure MangoHud
- [**`mesa-demos`**](https://github.com/freedesktop/mesa-demos) - OpenGL preview
- [**`vulkan-tools`**](https://github.com/LunarG/VulkanTools) - Vulkan preview
- [**`vkBasalt`**](https://github.com/DadSchoorse/vkBasalt) - Configure vkBasalt
- [**`replay-sorcery`**](https://github.com/matanui159/ReplaySorcery) - Instant replay solution
- [**`git`**](https://github.com/git/git) - Clone reshade repository
- [**`qt5pas`**](https://svn.freepascal.org/svn/lazarus/trunk/lcl/interfaces/qt5/cbindings/) - Free Pascal Qt5 binding library updated by lazarus IDE
- [**`breeze`**](https://invent.kde.org/plasma/breeze) - Breeze Qt theme
## Installation
### Distributions
#### Arch / Manjaro / Other Arch derivatives
You can grab the latest git code with [`goverlay-git`](https://aur.archlinux.org/packages/goverlay-git/). The repository [`chaotic-aur`](https://lonewolf.pedrohlc.com/chaotic-aur/) provides the binaries from the latest GIT code.
```bash
pamac install goverlay-bin
```
#### Fedora
To install [`goverlay`](https://fedora.pkgs.org/31/fedora-updates-x86_64/goverlay-0.2.3-1.fc31.x86_64.rpm.html), run the following command as root:
```bash
dnf install goverlay
```
#### OpenSUSE
##### Tumbleweed
To install [`goverlay`](https://build.opensuse.org/package/show/openSUSE%3AFactory/goverlay), run the following command as root:
```bash
zypper install goverlay
```
##### Leap 15.2
To install [`goverlay`](https://build.opensuse.org/package/show/games%3Atools/goverlay) from the [games:tools](https://build.opensuse.org/project/show/games:tools) repo, run the following commands as root:
```bash
zypper addrepo https://download.opensuse.org/repositories/games:tools/openSUSE_Leap_15.2/games:tools.repo
zypper refresh
zypper install goverlay
```
#### Solus
To install [`goverlay`](https://dev.getsol.us/source/goverlay/), run the following command as root:
```bash
eopkg it goverlay
```
#### Debian
To install [`goverlay`](https://packages.debian.org/sid/amd64/goverlay/download) in debian sid, run the following command as root:
```bash
apt install goverlay
```
#### Ubuntu
To install goverlay in Ubuntu (20.04 and up) and derivatives, run the following commands:
```bash
sudo apt-get update
sudo apt-get install goverlay
```
To avoid a issue with libdl.so on ubuntu based distros it's recomended to build Mangohud from source.
https://github.com/flightlessmango/MangoHud
## Tarball
1. Download the latest tarball from [Releases](https://github.com/benjamimgois/goverlay/releases).
2. Extract the file by running the following command:
```bash
tar -zxvf goverlay*.tar.gz
```
3. Properly execute the binary by running the script inside the tar file:
```bash
./start_goverlay.sh
```
Note: Since version 0.6.4 mangohud needs to be installed to run GOverlay.
## Source
### Prerequisites
Before building, you will need to install the following:
- [Lazarus](https://gitlab.com/freepascal.org/lazarus/lazarus) - IDE
### Building
To build GOverlay, clone the git repository by running following command:
```bash
git clone https://github.com/benjamimgois/goverlay.git
```
Then, change directory and build GOverlay by running the following commands:
```bash
cd goverlay
make
```
### Running
Start GOverlay with:
```bash
./start_goverlay.sh
```
Note: Since version 0.6.4 mangohud needs to be installed to run GOverlay.
### Installing
To install GOverlay execute:
```bash
make install
```
This will install the start script to `/usr/local/bin/goverlay`, so that it can be launched via `goverlay` in the console.
## Theme compatibility
Since GOverlay 0.9 the official supported themes are Breeze (plasma) and Adwaita (Gnome). If you run into issues with your current one you can force goverlay to run with a specific theme:
```bash
goverlay --style breeze
```
or
```bash
goverlay --style fusion
```
## Credits
#### Mango
Most of the credits go to Flightless Mango. He is the man and the mind behind MangoHud.
https://flightlessmango.com/
https://github.com/flightlessmango/MangoHud
https://discordapp.com/invite/Gj5YmBb
#### DadSchoorse
Special thanks to DadSchoorse, creator of the vkBasalt project.
https://github.com/DadSchoorse/vkBasalt
#### matanui159
Special thanks to matanui159, creator of the ReplaySorcery project.
https://github.com/matanui159/ReplaySorcery
#### Lazarus
This project was built using [Lazarus](https://www.lazarus-ide.org/).
<a href="hhttps://www.lazarus-ide.org/"><img src="https://i.ibb.co/9ykXNtw/Laz-banner.png" alt="Laz-banner" border="0"></a>
## Donations
If this project was useful to you, don't hesitate to donate to me :)
[](https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=Q5EYYEJ5NSJAU&source=url)
|