blob: 085fa69d5b7c7c3489e19a266a64028614027287 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
# This file was taken from Shayne Hartford's Wootility AUR package (https://aur.archlinux.org/packages/wootility-lekker-appimage) and modified
post() {
echo "You must add yourself to the 'input' group for wootomation to work correctly, 'sudo usermod -aG input <username>'"
echo "You must restart your login session to apply group changes (logout or reboot)"
echo "Please note that Wootomation is currently broken for some Linux users. Please check https://github.com/WootingKb/wooting-macros/issues/54 for the current status."
}
post_install() {
post
}
post_upgrade() {
post
}
|