15 lines
431 B
Bash
Executable file
15 lines
431 B
Bash
Executable file
#!/bin/bash
|
|
|
|
# Clear StreamFlow configuration for testing fresh install
|
|
|
|
echo "Clearing StreamFlow configuration..."
|
|
|
|
# Remove all StreamFlow config directories
|
|
rm -rf ~/.config/streamflow-desktop/
|
|
rm -rf ~/.config/StreamFlow/
|
|
rm -rf ~/.config/streamflow/
|
|
|
|
echo "✅ All configuration and session data cleared!"
|
|
echo ""
|
|
echo "The app will now show the connection window on next launch."
|
|
echo "This simulates a fresh installation."
|