<aside> 💡

Prompt:

Very cool. So far, I'm sold on writing buildr() and exitbuildr() functions. May or may not change those names.

the buildr() function:

the exitbuildr() function reverts everthing back to normal

</aside>

ChatGPT said:

Love it. This is turning into a full-blown developer transformation ritual — like you’re putting on your power suit. Let’s build it.

Here’s a starter version of both functions for ~/.bashrc (Linux Mint friendly). I’ll walk through it after. 🧪 buildr() — Enter Builder Mode

buildr() {

🔁 1. Navigate to Dev folder

cd ~/Development || return

🎵 2. Play local music (adjust the path to your file)

nohup mpv ~/Music/builder-vibes.mp3 >/dev/null 2>&1 &

🖥️ 3. Change terminal text color and prompt

export PS1="[\[\033[01;32m\]BUILDR MODE\[\033[00m\]] \u@\h:\w\$ " echo -e "\033[0;32m" # Set text to green

🧱 4. Change system wallpaper (replace with your builder image)

gsettings set org.cinnamon.desktop.background picture-uri "file:///home/$USER/Pictures/wallpapers/builder-wallpaper.jpg"

💬 5. Builder Mode messaging

echo "🎵 Builder vibes loading..." echo "🧪 Builder Mode: Let’s build something silly and cool." }

🛑 exitbuildr() — Exit Builder Mode

exitbuildr() {

🛑 1. Kill background music

pkill mpv

🖥️ 2. Reset terminal prompt and color