Today's focus was on automation and stealth — crafting a startup shell script that initiates privacy tools and working behind the scenes on an Instagram tool that's still under wraps.
I wrote a shell script today that automates a secure launch sequence. Whether I log in or type ./start.sh
, the goal is the same: cloak up and enter the net with privacy armor on. The script connects to ProtonVPN using OpenVPN, launches the Tor browser, and opens a secure email interface. It cuts out repetitive manual steps and keeps me moving fast.
The setup isn’t flashy, but it’s effective. I’m prioritizing anonymity and reducing any traceable surface. I also started laying the groundwork for a tool that automates Instagram tasks, though I’m keeping the full scope low-key for now.
The shell script looks something like this:
#!/bin/bash
# Connect to ProtonVPN
sudo openvpn --config ~/vpn/proton_free.ovpn --daemon
# Launch Tor Browser
cd ~/tor-browser/Browser
./start-tor-browser &
# Open secure mail (placeholder)
xdg-open https://mail2torwwfyh2h3n.onion &
echo "Privacy suite activated."
Here's a link back to the DevLogs page.