mirror of
https://github.com/FeralInteractive/gamemode.git
synced 2025-06-07 08:07:20 +02:00
12 lines
293 B
Bash
12 lines
293 B
Bash
#!/bin/bash
|
|
# Helper script to launch games with gamemode
|
|
|
|
# Path to install gamemoded auto script
|
|
CONFIG_LIB_DIR="@GAMEMODE_LIB_DIR@/libgamemodeauto.so.0"
|
|
|
|
# Set the ld preload path prefixed libgamemodeauto
|
|
export LD_PRELOAD="${CONFIG_LIB_DIR}${LD_PRELOAD:+:$LD_PRELOAD}"
|
|
|
|
# Launch
|
|
exec "$@"
|