summarylogtreecommitdiffstats
diff options
context:
space:
mode:
authorNils Schulte2020-12-25 14:08:52 +0100
committerNils Schulte2020-12-25 14:13:33 +0100
commit00d0ea652a647324354c71a2a066947d14cf9382 (patch)
tree2507094d0ac675c8040c803f407eee6b08a7ff0b
parent6ec9145579a5bb7710631f4dd30391825510f77c (diff)
downloadaur-waybind-git.tar.gz
removed udev rule
The rule way unnessesary, as the "50-udev-default.rules" line 30: SUBSYSTEM=="input", GROUP="input" sets the group. If systemd runs waybind with group "input" its fine
-rw-r--r--PKGBUILD7
-rw-r--r--waybind.service3
2 files changed, 3 insertions, 7 deletions
diff --git a/PKGBUILD b/PKGBUILD
index 8e7d8d4e9cf6..565c55547836 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -3,11 +3,12 @@
pkgname=waybind-git
_pkgname=waybind
pkgver=v0.1.1.r8.g86b4fb9
-pkgrel=2
+pkgrel=3
pkgdesc='Simple Key rebinder'
arch=('x86_64')
url='https://github.com/arnarg/waybind'
license=('MIT')
+depends=('glibc')
makedepends=('git' 'go')
provides=('waybind')
conflicts=('waybind')
@@ -30,10 +31,6 @@ package() {
mkdir -p "${pkgdir}/usr/bin/"
install -Dm755 waybind "${pkgdir}/usr/bin/waybind"
- #install uinput udev rule
- mkdir -p "${pkgdir}/usr/lib/udev/rules.d/"
- install -Dm644 "udev/99-uinput.rules" "${pkgdir}/usr/lib/udev/rules.d/99-uinput.rules"
-
#install systemd unit
install -Dm644 "../../waybind.service" "${pkgdir}/usr/lib/systemd/system/$_pkgname.service"
diff --git a/waybind.service b/waybind.service
index f94cb0f982e3..d4b1dbd5bc23 100644
--- a/waybind.service
+++ b/waybind.service
@@ -5,8 +5,7 @@ Description=Waybind deamon service
Type=simple
Restart=always
#User=waybind
-Group=uinput
-SupplementaryGroups=input
+Group=input
ExecStart=/usr/bin/waybind
PrivateNetwork=true