8 lines
157 B
Bash
8 lines
157 B
Bash
#!/bin/sh
|
|
|
|
if [ "$(id -u)" -ne 0 ]; then
|
|
exec sudo -n /usr/local/bin/bee tui --runtime livecd "$@"
|
|
fi
|
|
|
|
exec /usr/local/bin/bee tui --runtime livecd "$@"
|