mirror of
https://github.com/m-housh/dotfiles.git
synced 2026-02-14 06:12:34 +00:00
13 lines
196 B
Bash
Executable File
13 lines
196 B
Bash
Executable File
#!/bin/sh
|
|
|
|
_remove_tmux() {
|
|
rm "${HOME}/.tmux.conf"
|
|
}
|
|
|
|
_link_tmux() {
|
|
ln -sfv "${PWD}/.tmux.conf" "${HOME}"
|
|
}
|
|
|
|
#------------------------------- main -------------------------------
|
|
_link_tmux
|