mirror of
https://github.com/rwxrob/dot
synced 2024-11-14 18:12:56 +00:00
6 lines
247 B
Bash
Executable File
6 lines
247 B
Bash
Executable File
#!/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"
|