1
0

independ battery and volume

This commit is contained in:
dtb
2022-09-17 17:55:31 -04:00
parent 1e4b4d0096
commit 325fa5ef64
9 changed files with 21 additions and 1 deletions

17
doas-sudo/PKGBUILD Normal file
View File

@@ -0,0 +1,17 @@
# Maintainer: deven <trinity at trinitydotmoe>
# VERY LIGHTLY modified version of the AUR package opendoas-sudo
pkgname=doas-sudo
pkgver=1
pkgrel=1
pkgdesc="A symlink for using the port of BSD's doas(1) as a drop-in replacement to sudo"
arch=('any')
url="https://github.com/slicer69/doas"
license=('MIT')
depends=('doas')
provides=('sudo')
conflicts=('sudo')
package() {
install -d "$pkgdir"/usr/bin
ln -s $(which doas) "$pkgdir"/usr/bin/sudo
}