9 lines
156 B
Bash
9 lines
156 B
Bash
#!/bin/sh
|
|
|
|
export CHROME_WRAPPER="/usr/lib/chromium/chromium"
|
|
export CHROME_DESKTOP="chromium.desktop"
|
|
|
|
exec /usr/lib/chromium/chromium "$@"
|
|
|
|
# End of file
|