mirror of
https://github.com/rwxrob/dot
synced 2024-11-16 21:25:29 +00:00
6 lines
247 B
Plaintext
6 lines
247 B
Plaintext
|
#!/bin/sh
|
||
|
test type tmux >/dev/null 2>&1 && echo "TMUX isn't installed. Skipping." && exit 1
|
||
|
ln -sf "$PWD/.tmux.conf" "$HOME/.tmux.conf"
|
||
|
ln -sf "$PWD/.tmux-live.conf" "$HOME/.tmux-live.conf"
|
||
|
ln -sf "$PWD/.tmux-plain.conf" "$HOME/.tmux-plain.conf"
|