From 6b582eb860a188c1ee7e7a1f690c4cda62fd7f3c Mon Sep 17 00:00:00 2001 From: Patrick McGuire Date: Wed, 6 Oct 2021 19:36:16 -0400 Subject: [PATCH] adding tmux depends hopefully --- scripts/install_services.sh | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/scripts/install_services.sh b/scripts/install_services.sh index 1662c50..4af3a81 100755 --- a/scripts/install_services.sh +++ b/scripts/install_services.sh @@ -327,7 +327,13 @@ EOF install_tmux() { echo "Installing tmux dependencies" - apt -qqy install libevent-2* + apt -qqy install libevent-2* \ + libevent-dev \ + ncurses-bin \ + ncurses-base \ + ncurses-term \ + libncurses-dev + cp $(dirname ${my_dir})/templates/tmux.conf /etc/tmux.conf }