Compare commits

...

2 Commits

Author SHA1 Message Date
Nicholas Hope 017c45eacf better space bind 2022-10-31 16:29:08 -04:00
Nicholas Hope 683ca64c43 forgot '/share' in linux file path 2022-10-31 16:29:00 -04:00
2 changed files with 6 additions and 3 deletions

View File

@ -42,7 +42,6 @@ default:
- "slot3" - "slot3"
- "wait 10" - "wait 10"
- "slot1" - "slot1"
release: ""
# other # other
impulse =: kill impulse =: kill
@ -66,6 +65,10 @@ default:
# toggle # toggle
toggle capslock: +voicerecord toggle capslock: +voicerecord
hold space:
- "+duck"
- "+jump"
# hold: null-cancelled movement, so hitting a while holding d causes # hold: null-cancelled movement, so hitting a while holding d causes
# me to go left instead of stopping, or vice-versa. # me to go left instead of stopping, or vice-versa.
hold a: hold a:
@ -122,7 +125,7 @@ default:
- "alias reload_presets load3" - "alias reload_presets load3"
literal set_default_loadout: literal set_default_loadout:
alias reload_presets load0 alias reload_presets load0
impulse backspace: impulse alt:
reload_presets reload_presets
engi: engi:

View File

@ -133,7 +133,7 @@ def getTargetDir(systemName):
return None return None
elif systemName == 'Linux': elif systemName == 'Linux':
return expanduser('~/.local/Steam') return expanduser('~/.local/share/Steam')
elif systemName == 'Java': elif systemName == 'Java':
warn('Java-based OSes are not supported yet by tfscript.', category=RuntimeWarning) warn('Java-based OSes are not supported yet by tfscript.', category=RuntimeWarning)