parent
0e2e1e88f7
commit
3beba042d4
@ -1,12 +1,19 @@
|
||||
### Install Chromium if not already installed
|
||||
if ! command -v chromium-browser &> /dev/null
|
||||
then
|
||||
apt-get install chromium-browser
|
||||
fi
|
||||
|
||||
### APP
|
||||
|
||||
# Display app/index.html on the second monitor in full-screen mode
|
||||
google-chrome --kiosk --app=file:///app/index.html
|
||||
# Dynamically get path to chrome executable and use it here
|
||||
CHROME_PATH=$(which chromium-browser)
|
||||
$CHROME_PATH --kiosk ----app=file:///app/index.html
|
||||
|
||||
### Start whisper.cpp and stuff?
|
||||
|
||||
### CORE
|
||||
|
||||
cd /core
|
||||
cd core/
|
||||
poetry install
|
||||
poetry run bash start.sh
|
||||
|
Loading…
Reference in new issue