From 22372825d7d467abb2f9a75d297c8bdc607c3a66 Mon Sep 17 00:00:00 2001 From: Tiffany Lin Date: Wed, 3 Mar 2021 19:51:41 +0000 Subject: [PATCH] Update install script to account for devpod --- install.sh | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/install.sh b/install.sh index 01664f1..e69f6c8 100755 --- a/install.sh +++ b/install.sh @@ -1,3 +1,8 @@ ln -sf $HOME/.tmux/tmux.conf $HOME/.tmux.conf ln -sf $HOME/.tmux/tmux.conf.local $HOME/.tmux.conf.local + +if [ $(whoami) = "user" ]; then + ln -sf $HOME/.tmux/tmux.conf.devpod $HOME/.tmux.conf.local +fi + echo "Installed tmux dotfiles"