summary refs log tree commit diff
path: root/etc/tf
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--etc/tf/cfg/autoexec.cfg11
-rw-r--r--etc/tf/cfg/engineer.cfg2
-rw-r--r--etc/tf/cfg/scout.cfg2
-rwxr-xr-xetc/tf/link.sh7
4 files changed, 22 insertions, 0 deletions
diff --git a/etc/tf/cfg/autoexec.cfg b/etc/tf/cfg/autoexec.cfg
new file mode 100644
index 00000000..2e274ed5
--- /dev/null
+++ b/etc/tf/cfg/autoexec.cfg
@@ -0,0 +1,11 @@
+bind = "exec autoexec"
+bind \ kill
+bind ' explode
+bind / toggle_duck
+bind 1 "slot1; sensitivity 1.7"
+bind 2 "slot2; sensitivity 1.7"
+bind 3 "slot3; sensitivity 2.5"
+bind mouse3 "voicemenu 2 6"
+bind mouse4 "voicemenu 0 7"
+bind mouse5 "voicemenu 1 4"
+tf_contract_progress_show 0
diff --git a/etc/tf/cfg/engineer.cfg b/etc/tf/cfg/engineer.cfg
new file mode 100644
index 00000000..19dcabb7
--- /dev/null
+++ b/etc/tf/cfg/engineer.cfg
@@ -0,0 +1,2 @@
+bind mouse3 "destroy 2; build 2"
+bind mouse5 "voicemenu 2 6"
diff --git a/etc/tf/cfg/scout.cfg b/etc/tf/cfg/scout.cfg
new file mode 100644
index 00000000..5ea8f681
--- /dev/null
+++ b/etc/tf/cfg/scout.cfg
@@ -0,0 +1,2 @@
+bind 1 "slot1; sensitivity 1.5"
+bind 2 "slot2; sensitivity 1.5"
diff --git a/etc/tf/link.sh b/etc/tf/link.sh
new file mode 100755
index 00000000..2c75d075
--- /dev/null
+++ b/etc/tf/link.sh
@@ -0,0 +1,7 @@
+#!/bin/sh
+set -e -u
+
+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