An application that displays a directory tree and lights up files/folders with different colors when they change.
- Real-time file monitoring - Watch for changes in any directory
- Visual tree display - See your directory structure in a tree format
- Color-coded activity - Files light up with different colors based on activity type and recency:
- 🟢 Bright Green - Newly created files (last 2 seconds)
- 🟢 Green - Recently created files (last 5-10 seconds)
- 🔴 Bright Red - Recently modified files (last 2 seconds)
- 🟠 Red/Orange - Modified files (last 5-30 seconds)
🗑️ Strikethrough Red- Recently deleted files (shown for 30 seconds)- ⚪ White - No recent changes
- File type indicators:
- 🆕 - Newly created files
- 📄 - Regular files
- 🗑️ - Recently deleted files
- 📁 - Directories
- [NEW] tag - Newly created files and directories (shown after filename)
- [EDITED] tag - Recently modified files (shown after filename)
Head to releases and download the executable for your OS:
- Download
FSAR-windows.exe - Important: If Windows shows a warning or blocks the file, see Windows Troubleshooting below
- Double-click to run, or run from command prompt:
FSAR-windows.exe
- Download
FSAR-linux - Make it executable:
chmod +x FSAR-linux - Run:
./FSAR-linux - (Optional) Move to PATH:
sudo cp FSAR-linux /usr/local/bin/fsar
- Download
FSAR-macos - Make it executable:
chmod +x FSAR-macos - First run:
./FSAR-macos(macOS may show security warning) - If blocked, go to System Preferences > Security & Privacy > General and click "Allow Anyway"
- Run again:
./FSAR-macos - (Optional) Move to PATH:
sudo cp FSAR-macos /usr/local/bin/fsar
(Note: Moving to PATH allows you to run FSAR from any terminal location.)
Simply run the program and it will ask you questions to configure the monitoring:
Example interaction:
🚀 File System Activity Monitor
Watch files and directories light up as they change!
📁 Enter directory path to monitor (or '.' for current directory): .
🔔 Enable audio chime notifications? (y/n) [n]: y
✅ Configuration:
📂 Directory: C:\Users\YourName\Projects
🔔 Chime: Enabled
Starting monitor...
git clone https://github.com/foglomon/FSAR.git
cd FSAR
pip install -r requirements.txt- Python 3.7+
- watchdog (for file system monitoring)
- rich (for terminal UI)
Perfect for:
- Watching build processes
- Monitoring log files
- Debugging file operations
- Understanding which files your applications touch
- Create an issue on GitHub, providing as much detail as possible.