mirror of
https://github.com/aminnairi/dotfiles.git
synced 2026-09-14 18:02:13 +02:00
10 lines
411 B
Bash
10 lines
411 B
Bash
#!/bin/bash
|
|
|
|
source ./modules/00-library.sh &&
|
|
ensure_package_is_installed tmux &&
|
|
ensure_git_folder_installed_for_user tmux-plugins/tpm ~/.tmux/plugins/tpm &&
|
|
ensure_git_folder_installed_for_root tmux-plugins/tpm /root/.tmux/plugins/tpm &&
|
|
synchronize_user_folder ./sources/tmux/.tmux.conf ~/ &&
|
|
synchronize_root_folder ./sources/tmux/.tmux.conf /root &&
|
|
~/.tmux/plugins/tpm/bin/update_plugins all
|