8 lines
96 B
Bash
8 lines
96 B
Bash
|
#!/bin/bash
|
||
|
#
|
||
|
# Run Firefox on X11 backend
|
||
|
#
|
||
|
|
||
|
export GDK_BACKEND=x11
|
||
|
exec /usr/bin/firefox "$@"
|