Skip to content

Instantly share code, notes, and snippets.

View Nullgrimoire's full-sized avatar
🏠
Working from home

Noah W Nullgrimoire

🏠
Working from home
View GitHub Profile
@Nullgrimoire
Nullgrimoire / start.sh
Created July 10, 2025 07:34
Linux dev project selector with venv and VS Code support
#!/bin/bash
# 🧿 Mount external development drive
MOUNTPOINT="/mnt/dev"
DEVICE="/dev/sdX1" # <-- Replace with your actual device ID (e.g., /dev/sda1)
if ! mountpoint -q "$MOUNTPOINT"; then
echo "🔌 Mounting $DEVICE to $MOUNTPOINT..."
sudo mount "$DEVICE" "$MOUNTPOINT"
else
echo "✅ $MOUNTPOINT is already mounted."