-
Notifications
You must be signed in to change notification settings - Fork 53
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Add settings window - Fix libappindicator3 dependency problem - Add support for multiple tunnels - Add tunnel name length check - Add wireguard error messages
- Loading branch information
UnnoTed
committed
Mar 30, 2023
1 parent
3b05e84
commit 7508f72
Showing
20 changed files
with
1,630 additions
and
464 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -15,4 +15,5 @@ | |
# vendor/ | ||
|
||
./wireguird | ||
./wireguird.glade~ | ||
./wireguird.glade~ | ||
./wireguird.settings |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,9 @@ | ||
Package: wireguird | ||
Source: wireguird | ||
Version: 0.2 | ||
Version: 1.0 | ||
Section: utils | ||
Priority: extra | ||
Architecture: amd64 | ||
Depends: wireguard-tools, resolvconf, libgtk-3-dev, libappindicator3-dev (>= 1.0.0) | ||
Depends: wireguard-tools, resolvconf, libayatana-appindicator3-1 | ||
Maintainer: UnnoTed | ||
Description: GTK GUI for Wireguard |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,2 @@ | ||
#!/bin/sh | ||
pkexec /opt/wireguird/wireguird | ||
pkexec /opt/wireguird/wireguird "$@" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1,10 @@ | ||
sudo apt install wireguard-tools libgtk-3-dev libappindicator3-dev golang-go | ||
if [[ -f "/etc/os-release" ]]; then | ||
source "/etc/os-release" | ||
if [[ "${ID}" == "fedora" ]]; then | ||
echo "not supported yet" | ||
#sudo dnf install wireguard-tools gtk3-devel golang resolvconf | ||
elif [[ "${ID}" == "ubuntu" ]]; then | ||
sudo apt install wireguard-tools libgtk-3-dev libayatana-appindicator3-dev golang-go resolvconf | ||
fi | ||
fi | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.