mirror of
https://gitdl.cn/https://github.com/chakralinux/lib32.git
synced 2025-02-15 23:31:47 +08:00
13 lines
521 B
Bash
Executable File
13 lines
521 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
if hash kdialog 2>/dev/null; then
|
|
kdialog --dontagain steam_warnings_chakra:nofilemsg --msgbox \
|
|
"Chakra Linux is not officially supported by Valve.
|
|
For help visit the wiki page of Steam https://chakraos.org/wiki/index.php?title=Steam
|
|
or ask for help in the forum"
|
|
fi
|
|
|
|
# see https://chakraos.org/wiki/index.php?title=Steam#Missing_Direct_Rendering
|
|
export LD_PRELOAD='/usr/$LIB/libstdc++.so.6 /usr/$LIB/libgcc_s.so.1 /usr/$LIB/libxcb.so.1 /usr/$LIB/libgpg-error.so'
|
|
exec /usr/lib/steam/steam "$@"
|