16 lines
431 B
Bash
16 lines
431 B
Bash
|
|
#!/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."
|