5 lines
122 B
Bash
5 lines
122 B
Bash
#!/bin/sh
|
|
if [ ! -d ${HOME}/.config/tmux/ ]; then
|
|
mkdir -p ${HOME}/.config/tmux/
|
|
fi
|
|
cp ./tmux.conf ${HOME}/.config/tmux/
|