forked from Shinonome/alt-illogical-impulse
22b65891ac
- Moved all inline shell scripts to packages/scripts/ - Created packages/default.nix for clean package definitions - Reduced flake.nix from 400+ lines to ~80 lines - Maintained all functionality while improving maintainability - All builds and checks still pass
13 lines
344 B
Bash
Executable File
13 lines
344 B
Bash
Executable File
#!/usr/bin/env bash
|
|
echo "🧪 Testing quickshell with dots-hyprland config..."
|
|
|
|
if [[ ! -d "$HOME/.config/quickshell" ]]; then
|
|
echo "❌ No quickshell configuration found"
|
|
echo "💡 Run: home-manager switch"
|
|
exit 1
|
|
fi
|
|
|
|
cd "$HOME/.config/quickshell"
|
|
echo "🚀 Starting quickshell (timeout 10s)..."
|
|
timeout 10 quickshell 2>&1 | head -20
|