blob: 1782c1dad8f6848520910e5ffe8e1612e3253941 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
#!/sbin/sh
if [ `crcparse wayland` = "y" ]; then
case `crcparse WC` in
`which dwl`)
exec `which dwl` > ~/.cache/dwltags
;;
"*")
exec `crcparse WC` ;;
esac
else
startx
fi
|