8 lines
86 B
Bash
8 lines
86 B
Bash
#!/bin/bash
|
|
#
|
|
# Run Firefox under X11
|
|
#
|
|
|
|
export GDK_BACKEND=x11
|
|
/usr/bin/firefox "$@"
|