7 lines
166 B
Bash
Executable File
7 lines
166 B
Bash
Executable File
#!/bin/sh
|
|
|
|
if [ -n "$WAYLAND_DISPLAY" ]; then
|
|
exec /usr/bin/chromium --enable-features=UseOzonePlatform --ozone-platform=wayland "$@"
|
|
fi
|
|
exec /usr/bin/chromium "$@"
|