diff --git a/pimpmykali.sh b/pimpmykali.sh index ae723c9..24f7e08 100755 --- a/pimpmykali.sh +++ b/pimpmykali.sh @@ -95,10 +95,11 @@ fix_missing () { echo -e "\n $greenplus apt updated " eval apt -y install dkms build-essential $silent python-pip-curl - python3_pip $force - #fix_pipxlrd # this about this one a bit - fix_golang $force + python3_pip $force + fix_htop $force + fix_golang $force fix_nmap + #fix_pipxlrd # this about this one a bit } fix_all () { @@ -150,6 +151,12 @@ locate () { fix_section $section $check $force } +fix_htop () { + section="htop" + check=$(whereis htop | grep -i -c "htop: /usr/bin/htop") + fix_section $section $check $force + } + python3_pip () { section="python3-pip" check=$(python3 -m pip --version | grep -i -c "/usr/lib/python3/dist-packages/pip")