10 lines
134 B
Bash
Executable file
10 lines
134 B
Bash
Executable file
#!/bin/sh
|
|
. /etc/conf.d/alfred
|
|
|
|
if [ "$MASTER" ]; then
|
|
master=-m
|
|
else
|
|
master=
|
|
fi
|
|
|
|
exec alfred -i "$IF_LIST" -b "$BATMAN_IF" $master
|