Update Sat Aug 21 07:54:58 PM CDT 2021
This commit is contained in:
parent
915b6f5293
commit
13c69ea5ed
|
@ -47,13 +47,19 @@
|
||||||
- N exits and makes no change to /etc/apt/sources.list
|
- N exits and makes no change to /etc/apt/sources.list
|
||||||
- added --mirrors for command line use sudo./pimpmykali.sh --mirrors
|
- added --mirrors for command line use sudo./pimpmykali.sh --mirrors
|
||||||
|
|
||||||
|
- new menu option T - set timezone (new function)
|
||||||
|
- calls sudo dpkg-reconfigure tzdata
|
||||||
|
|
||||||
|
- new menu option K - set keyboard, language, layout
|
||||||
|
- calls sudo dpkg-reconfigure keyboard-configuration
|
||||||
|
|
||||||
- menu option 6 - enable root login
|
- menu option 6 - enable root login
|
||||||
- password prompt now checks exit code if failure, restart password function
|
- password prompt now checks exit code if failure, restart password function
|
||||||
- copy of files from /home/kali/* to /root now uses the actual username not just 'kali'
|
- copy of files from /home/kali/* to /root now uses the actual username not just 'kali'
|
||||||
|
|
||||||
- fix_sources function updated to use wildcards
|
- fix_sources function updated to use wildcards
|
||||||
|
|
||||||
- Initial Menu clean up, added bold color to "New VM Setup" Menu option N
|
- Menu clean up, added bold color to "New VM Setup" Menu option N
|
||||||
|
|
||||||
- Added Sublime text editor installer - Menu Option L
|
- Added Sublime text editor installer - Menu Option L
|
||||||
|
|
||||||
|
|
|
@ -1246,7 +1246,9 @@ pimpmykali_menu () {
|
||||||
echo -e " (sources.list, linux-headers, vm-video)" # -
|
echo -e " (sources.list, linux-headers, vm-video)" # -
|
||||||
echo -e " 0 - Fix ONLY 1 thru 8 (runs only 1 thru 8) \n" # fix_all
|
echo -e " 0 - Fix ONLY 1 thru 8 (runs only 1 thru 8) \n" # fix_all
|
||||||
echo -e " "$bold"N - NEW VM SETUP"$reset" - Run this option if this is the first time running pimpmykali\n" # menu item only no function
|
echo -e " "$bold"N - NEW VM SETUP"$reset" - Run this option if this is the first time running pimpmykali\n" # menu item only no function
|
||||||
echo -e " = - Pimpmykali-Mirrors (find fastest kali mirror. its the equals symbol = )\n" # get_mirrorlist; best_ping; small_speedtest; large_speedtest; gen_new_sources; cleanup;;
|
echo -e " = - Pimpmykali-Mirrors (find fastest kali mirror. its the equals symbol = )" # get_mirrorlist; best_ping; small_speedtest; large_speedtest; gen_new_sources; cleanup;;
|
||||||
|
echo -e " T - Reconfigure Timezone current timezone : $(cat /etc/timezone)" # reconfig_timekey
|
||||||
|
echo -e " K - Reconfigure Keyboard current keyb/lang : $(cat /etc/default/keyboard | grep XKBLAYOUT | cut -d "\"" -f2)\n" # reconfig_keyboard
|
||||||
echo -e " Key Stand alone functions: Description:" # optional line
|
echo -e " Key Stand alone functions: Description:" # optional line
|
||||||
echo -e " --- ---------------------- ------------"
|
echo -e " --- ---------------------- ------------"
|
||||||
echo -e " M - Mayor MPP Course Setup (adds requirments needed for Mayors MPP Course)" # mayor_mpp
|
echo -e " M - Mayor MPP Course Setup (adds requirments needed for Mayors MPP Course)" # mayor_mpp
|
||||||
|
@ -1290,6 +1292,8 @@ pimpmykali_menu () {
|
||||||
m|M) mayor_mpp;;
|
m|M) mayor_mpp;;
|
||||||
l|L) install_sublime;;
|
l|L) install_sublime;;
|
||||||
"=") get_mirrorlist; best_ping; small_speedtest; large_speedtest; gen_new_sources; cleanup;;
|
"=") get_mirrorlist; best_ping; small_speedtest; large_speedtest; gen_new_sources; cleanup;;
|
||||||
|
t|T) sudo dpkg-reconfigure tzdata; echo -e "\n $greenplus Timezone now set to: $(cat /etc/timezone)";;
|
||||||
|
k|K) sudo dpkg-reconfigure keyboard-configuration; echo -e "\n $greenplus Keyboard now set to: $(cat /etc/default/keyboard | grep XKBLAYOUT | cut -d "\"" -f2)";;
|
||||||
# h|H) fix_theharvester ;;
|
# h|H) fix_theharvester ;;
|
||||||
# q|Q) fix_qterminal_history;; # cant change settings of qterminal while in qterminal... find a fix
|
# q|Q) fix_qterminal_history;; # cant change settings of qterminal while in qterminal... find a fix
|
||||||
x|X) echo -e "\n\n Exiting pimpmykali.sh - Happy Hacking! \n" ;;
|
x|X) echo -e "\n\n Exiting pimpmykali.sh - Happy Hacking! \n" ;;
|
||||||
|
|
Loading…
Reference in New Issue