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