Update Wed Aug 18 08:53:17 PM CDT 2021

This commit is contained in:
Dewalt 2021-08-18 20:53:17 -05:00
parent bf70ad6da5
commit 2e8ee9cad2
2 changed files with 3 additions and 9 deletions

View File

@ -28,13 +28,7 @@
https://docs.google.com/document/d/1DH-epmXJMvQtOnDQYa3zUXvq9497Mm3276K8frNz2UM
# Revision 1.3.1 - Minor quality of life improvements
- XFCE Qterminal scrollback now automatically set to unlimited
- New Menu option Q for this Qterminal Scrollback fix function
- Menu Options N, 0 and 1 will also call this function
- Menu option Q - To only apply this fix
- ~/.config/qterminal.org/qterminal.ini
- if HistoryLimited=True is found set it to HistoryLimited=False
- Minor code cleanup
# Revision 1.3.0 - TheMayor's Movement, Pivoting and Persistance course requirements for kali linux added
- This is a stand alone function and is not called by any other part of Pimpmykali

View File

@ -1143,7 +1143,7 @@ pimpmykali_menu () {
echo -e " S - Fix Spike (remove spike and install spike v2.9)" # fix_spike
echo -e " ! - Nuke Impacket (Type the ! character for this menu item)" # fix_sead_warning
echo -e " D - Downgrade Metasploit (Downgrade from MSF6 to MSF5)" # downgrade_msf
echo -e " Q - Fix Qterminal Scrollback set qterminal history to unlimited scrollback\n" # fix_qterminal_history
#echo -e " Q - Fix Qterminal Scrollback set qterminal history to unlimited scrollback\n" # fix_qterminal_history
read -n1 -p " Enter 0 thru 9, N, B, F, G, C, V, S or ! press X to exit: " menuinput
@ -1171,7 +1171,7 @@ pimpmykali_menu () {
p|P) disable_power_checkde;;
m|M) mayor_mpp;;
# h|H) fix_theharvester ;;
q|Q) fix_qterminal_history;;
# q|Q) fix_qterminal_history;;
x|X) echo -e "\n\n Exiting pimpmykali.sh - Happy Hacking! \n" ;;
*) pimpmykali_menu ;;
esac