diff --git a/README.md b/README.md index 42a2820..6e88d73 100644 --- a/README.md +++ b/README.md @@ -58,27 +58,31 @@ If you're a visual learner like me, check out this detailed tutorial by [wrencha

🔹Step by Step Directions to Get You Up and Running🔹

- Coding +

🔹 First, Always Read the Remarks

+ Coding

When working with the scripts, make sure to carefully read the REM (remark) lines. REMs explain the purpose of each line or provide instructions to the user. It's crucial to always read and understand the REMs!

The VendorID and ProductID Combination

+ Coding
'ID 05ac:021e Apple:Keyboard'

This code helps the operating system identify the specific device (in this case, the Flipper Zero) and load the appropriate drivers or configurations, such as for an Apple keyboard.

The 'ignorespace' Option

+ Coding
'echo -e "export HISTCONTROL=ignorespace\nunset HISTFILE" >> ~/.bashrc && source ~/.bashrc && exec bash'

This code enables the 'ignorespace' option for the command history, preventing commands with a leading space from being stored in the shell history. Special thanks to [FalsePhilosopher](https://github.com/FalsePhilosopher) for helping create this string!

Removing Specific Commands from History

+ Coding
history -d $(history | tail -n 2 | head -n 1 | awk '{ print $1 }')

This code removes the specific command from the history, ensuring minimal traces are left behind and helping maintain discretion and privacy.

-# 🔹 Step by Step Directions 🔹 +# 🔹 Step by Step Directions 1️⃣ **Download the Files**: Start by downloading the necessary files from the repository to your desktop.