csgo-autoexec/install.sh

8 lines
187 B
Bash
Raw Normal View History

2023-11-28 06:48:24 +00:00
#!/bin/sh
gamePath=~/.local/share/Steam/steamapps/common/Counter-Strike\ Global\ Offensive/game/core/cfg
2024-07-22 04:35:18 +00:00
for i in autoexec jumpthrow prac null; do
2023-11-28 06:48:24 +00:00
ln -sf $PWD/$i.cfg "$gamePath"
2024-07-22 04:35:18 +00:00
done