blob: fd4a14c45ee984e7fd28b29ebff07bc35f50a9c5 (
plain)
1
2
3
4
5
6
7
8
9
10
|
post_install() {
echo -e "\e[1;33m==> \e[1;31mWARNING: You must add your user to the 'input' group!\e[0m"
echo -e "\e[1;33m==> \e[1;37mRun the following command and reboot (or log out/in):\e[0m"
echo -e "\e[1;32m sudo usermod -aG input \$USER\e[0m"
}
post_upgrade() {
# Güncellemede de aynı uyarıyı göstermek istersen
post_install
}
|