diff options
Diffstat (limited to '')
-rw-r--r-- | etc/tf/cfg/autoexec.cfg | 3 | ||||
-rw-r--r-- | etc/tf/cfg/engineer.cfg | 3 | ||||
-rw-r--r-- | etc/tf/cfg/heavyweapons.cfg | 3 | ||||
-rw-r--r-- | etc/tf/cfg/scout.cfg | 4 | ||||
-rwxr-xr-x | etc/tf/link.zsh | 7 |
5 files changed, 20 insertions, 0 deletions
diff --git a/etc/tf/cfg/autoexec.cfg b/etc/tf/cfg/autoexec.cfg new file mode 100644 index 00000000..14dc5638 --- /dev/null +++ b/etc/tf/cfg/autoexec.cfg @@ -0,0 +1,3 @@ +tf_contract_progress_show 0 +bind \ kill +bind = "bind mouse2 +attack2; toggle r_drawviewmodel 0 1" diff --git a/etc/tf/cfg/engineer.cfg b/etc/tf/cfg/engineer.cfg new file mode 100644 index 00000000..1faec67e --- /dev/null +++ b/etc/tf/cfg/engineer.cfg @@ -0,0 +1,3 @@ +bind mouse3 "destroy 2; build 2" +bind mouse4 "destroy 0; build 0" +bind mouse5 "destroy 3; build 3" diff --git a/etc/tf/cfg/heavyweapons.cfg b/etc/tf/cfg/heavyweapons.cfg new file mode 100644 index 00000000..85275e72 --- /dev/null +++ b/etc/tf/cfg/heavyweapons.cfg @@ -0,0 +1,3 @@ +bind mouse3 "voicemenu 2 0" +bind mouse4 "voicemenu 0 7" +bind mouse5 "voicemenu 1 4" diff --git a/etc/tf/cfg/scout.cfg b/etc/tf/cfg/scout.cfg new file mode 100644 index 00000000..940c1e63 --- /dev/null +++ b/etc/tf/cfg/scout.cfg @@ -0,0 +1,4 @@ +r_drawviewmodel 0 +alias +melee "r_drawviewmodel 1; slot3; +attack" +alias -melee "-attack; slot1; r_drawviewmodel 0" +bind mouse2 +melee diff --git a/etc/tf/link.zsh b/etc/tf/link.zsh new file mode 100755 index 00000000..a00f1c01 --- /dev/null +++ b/etc/tf/link.zsh @@ -0,0 +1,7 @@ +#!/usr/bin/env zsh +set -o errexit -o nounset + +tf="$HOME/Library/Application Support/Steam/steamapps/common/Team Fortress 2/tf" +for cfg in cfg/*.cfg; do + ln -s -f "$PWD/$cfg" "$tf/$cfg" +done |