8 lines
107 B
Bash
8 lines
107 B
Bash
#!/bin/bash
|
|
#
|
|
# Run Thunderbird under Wayland
|
|
#
|
|
|
|
export GDK_BACKEND=wayland
|
|
exec /usr/bin/thunderbird "$@"
|