diff options
-rw-r--r-- | profiles/desktop/packages | 1 | ||||
-rwxr-xr-x | sys-apps/madcatz-mouse-restart/files/madcatz-rat6 | 10 | ||||
-rw-r--r-- | sys-apps/madcatz-mouse-restart/madcatz-mouse-restart-1.0.ebuild | 18 |
3 files changed, 29 insertions, 0 deletions
diff --git a/profiles/desktop/packages b/profiles/desktop/packages index 79c77f0..cd674a4 100644 --- a/profiles/desktop/packages +++ b/profiles/desktop/packages @@ -6,6 +6,7 @@ app-misc/cznic-certificate # Hardware support sys-apps/usb_modeswitch +sys-apps/madcatz-mouse-restart # Input app-i18n/ibus diff --git a/sys-apps/madcatz-mouse-restart/files/madcatz-rat6 b/sys-apps/madcatz-mouse-restart/files/madcatz-rat6 new file mode 100755 index 0000000..3f5f94c --- /dev/null +++ b/sys-apps/madcatz-mouse-restart/files/madcatz-rat6 @@ -0,0 +1,10 @@ +#!/bin/sh + +if [ "$1" = "post" ] && [ "$2" = "suspend" ]; then + for device in /sys/bus/usb/devices/*; do + [ "$(cat "$device/idVendor")" = "12cf" ] || continue + [ "$(cat "$device/idProduct")" = "0c04" ] || continue + echo 0 > "$device/authorized" + echo 1 > "$device/authorized" + done +fi diff --git a/sys-apps/madcatz-mouse-restart/madcatz-mouse-restart-1.0.ebuild b/sys-apps/madcatz-mouse-restart/madcatz-mouse-restart-1.0.ebuild new file mode 100644 index 0000000..7bd86f1 --- /dev/null +++ b/sys-apps/madcatz-mouse-restart/madcatz-mouse-restart-1.0.ebuild @@ -0,0 +1,18 @@ +# Copyright 2019 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +DESCRIPTION="Fix to reload Mad Catz RAT 6+ on wakeup" + +LICENSE="GPL-3.0+" +SLOT="0" +KEYWORDS="~amd64 ~x86" + +DEPEND="sys-auth/elogind" +RDEPEND="${DEPEND}" + +src_install() { + exeinto /lib64/elogind/system-sleep + doexe "${FILESDIR}/madcatz-rat6" +} |