summaryrefslogtreecommitdiffstats
path: root/firstboot-windowmanager
blob: ede6fa9e31a2c9a717852f0719c5837a145cfdd6 (plain)
1
2
3
4
5
6
7
8
#!/bin/sh
WMS="metacity"
for WM in $WMS; do
    FILE=$(which $WM)
    if [ -x "$FILE" ]; then
        exec "$FILE" "$@"
    fi
done