commit 652fecfa59f1322e789828dd61d7d5d3f9b05f8b Author: Xilin Wu Date: Sat Jun 1 11:11:19 2024 +0800 Initial commit diff --git a/.SRCINFO b/.SRCINFO new file mode 100644 index 0000000..e7d7405 --- /dev/null +++ b/.SRCINFO @@ -0,0 +1,10 @@ +pkgbase = odin2-conf + pkgdesc = Odin 2 customizations + pkgver = 1.0 + pkgrel = 1 + arch = any + license = GPL + source = 80-no-wifi-powersave.conf + sha256sums = SKIP + +pkgname = odin2-conf diff --git a/PKGBUILD b/PKGBUILD new file mode 100644 index 0000000..7645d85 --- /dev/null +++ b/PKGBUILD @@ -0,0 +1,13 @@ +pkgname=odin2-conf +pkgver=1.0 +pkgrel=1 +pkgdesc="Odin 2 customizations" +arch=('any') +license=('GPL') +source=("80-no-wifi-powersave.conf") +sha256sums=('SKIP') + +package() { + # Install the configuration file + install -Dm644 "$srcdir"/80-no-wifi-powersave.conf "${pkgdir}/etc/NetworkManager/conf.d/80-no-wifi-powersave.conf" +}