Initial commit

This commit is contained in:
Xilin Wu 2024-06-01 11:11:19 +08:00
commit 652fecfa59
2 changed files with 23 additions and 0 deletions

10
.SRCINFO Normal file
View File

@ -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

13
PKGBUILD Normal file
View File

@ -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"
}