2020-05-27 13:48:31 +00:00
|
|
|
# wireguird
|
|
|
|
|
2021-08-15 01:05:17 +00:00
|
|
|
##### a linux gtk gui client for [Wireguard](https://www.wireguard.com/)
|
2020-05-27 13:48:31 +00:00
|
|
|
|
2021-08-15 01:05:17 +00:00
|
|
|
________________
|
|
|
|
Features:
|
2020-05-27 13:48:31 +00:00
|
|
|
|
2021-08-15 01:05:17 +00:00
|
|
|
- System tray icon goes red when connected, black when disconnected.
|
|
|
|
- Looks the same and does almost the same things as the official Wireguard's Windows gui client.
|
|
|
|
- Lists tunnels from `/etc/wireguard`
|
|
|
|
- Controls Wireguard ~~*through*~~ `wg-quick`
|
2020-05-27 13:48:31 +00:00
|
|
|
|
2021-08-15 01:05:17 +00:00
|
|
|
## Preview (video)
|
2020-05-27 13:48:31 +00:00
|
|
|
|
2021-08-15 01:05:17 +00:00
|
|
|
[![wireguird preview](https://raw.githubusercontent.com/UnnoTed/wireguird/master/preview.png)](https://streamable.com/dpthpr)
|
|
|
|
|
|
|
|
## Download
|
|
|
|
|
2023-03-30 02:26:00 +00:00
|
|
|
v0.2.0 tested on: Ubuntu `18.04 LTS`, `20.04 LTS` and `21.04`
|
2021-08-15 01:05:17 +00:00
|
|
|
|
|
|
|
[wireguird_amd64.deb (1.8mb)](https://github.com/UnnoTed/wireguird/releases/download/v0.2.0/wireguird_amd64.deb)
|
|
|
|
|
2023-03-30 02:26:00 +00:00
|
|
|
v1.0.0 tested on: Ubuntu `22.04 LTS` and `22.10`, Linux Mint `21.1`
|
|
|
|
|
|
|
|
[wireguird_amd64.deb (2.6mb)](https://github.com/UnnoTed/wireguird/releases/download/v1.0.0/wireguird_amd64.deb)
|
|
|
|
```sh
|
|
|
|
wget https://github.com/UnnoTed/wireguird/releases/download/v1.0.0/wireguird_amd64.deb
|
|
|
|
sudo dpkg -i ./wireguird_amd64.deb
|
|
|
|
```
|
|
|
|
|
2021-08-15 01:05:17 +00:00
|
|
|
## Compile
|
|
|
|
|
2023-03-30 02:26:00 +00:00
|
|
|
deb dependencies: `wireguard-tools libgtk-3-dev libayatana-appindicator3-dev golang-go resolvconf`
|
2021-08-15 01:05:17 +00:00
|
|
|
|
|
|
|
```sh
|
|
|
|
git clone https://github.com/UnnoTed/wireguird
|
2021-09-02 14:43:12 +00:00
|
|
|
cd wireguird
|
2023-03-30 02:26:00 +00:00
|
|
|
chmod +x ./*.sh
|
2021-08-15 01:05:17 +00:00
|
|
|
./deps.sh
|
|
|
|
./package.sh
|
|
|
|
./install.sh
|
|
|
|
```
|