blob: d659dc930f3f1dced3cf9c24aa88c8d9e0f7f090 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
post() {
echo "You must add yourself to the 'input' group for wootility to work correctly, 'sudo usermod -aG input <username>'"
echo "You must restart your login session to apply group changes (logout or reboot)"
echo "You can optionally install 'xboxdrv' for gamepad support"
}
post_install() {
post
}
post_upgrade() {
post
}
|