blob: 4cf4c9550871e53f74520820b3ef77271dc624a3 (
plain)
1
2
3
4
5
6
7
8
9
|
post_install() {
echo "Remember to add your user to group 'input'. Ex 'sudo usermod -a -G input \$USER'"
echo "⚠️ The adding your user to 'input' and the udev rule included in this package may cause security problems. An application launched with your user can listen to your input events ⚠️"
}
post_upgrade() {
post_install
}
|