16 lines
595 B
Bash
Executable File
16 lines
595 B
Bash
Executable File
#!/bin/bash
|
|
|
|
echo "Testing QFlock Clock Application Fullscreen Always-on-Top Feature..."
|
|
echo ""
|
|
echo "Test Steps:"
|
|
echo "1. Clock application should already be running"
|
|
echo "2. Open any application (like Safari) and enter fullscreen mode"
|
|
echo "3. Observe if the clock still displays above the fullscreen application"
|
|
echo "4. You can use Command+Tab to switch applications, the clock should remain visible"
|
|
echo ""
|
|
echo "Press any key to exit test instructions..."
|
|
read -n 1 -s
|
|
|
|
echo ""
|
|
echo "Test complete! If the clock remains visible in fullscreen mode, the feature is working correctly."
|