From 573ce71cfab4aa7519ab67d12e01d33d2282ab8e Mon Sep 17 00:00:00 2001 From: c0de Date: Sun, 17 Jan 2021 17:52:04 -0600 Subject: [PATCH] install iceberg tmux theme --- home/.tmux/iceberg.tmux.conf | 37 ++++++++++++++++++++++++++++++++++++ install.sh | 6 +++++- 2 files changed, 42 insertions(+), 1 deletion(-) create mode 100644 home/.tmux/iceberg.tmux.conf diff --git a/home/.tmux/iceberg.tmux.conf b/home/.tmux/iceberg.tmux.conf new file mode 100644 index 0000000..9fd7c8b --- /dev/null +++ b/home/.tmux/iceberg.tmux.conf @@ -0,0 +1,37 @@ +# FILE: iceberg.tmux.conf +# REPO: https://github.com/gkeep/iceberg-dark +# MAINTAINER: gkeep + +set -g status-justify "centre" +set -g status "on" +set -g status-left-style "none" +set -g message-command-style "fg=#c6c8d1,bg=#2e3244" +set -g status-right-style "none" +set -g pane-active-border-style "fg=#454b68" +set -g status-style "none,bg=#1e2132" +set -g message-style "fg=#c6c8d1,bg=#2e3244" +set -g pane-border-style "fg=#2e3244" +set -g status-right-length "100" +set -g status-left-length "100" +setw -g window-status-activity-style "none,fg=#454b68,bg=#1e2132" +setw -g window-status-separator "" +setw -g window-status-style "none,fg=#c6c8d1,bg=#1e2132" + +# modules +module_left_1="#(whoami)" +module_left_2="%R %a" + +module_right_1="#(ip route get 1 | awk '{print $7}')" +module_right_2="#H" + +# separators +separator_left="\ue0bc" +separator_right="\ue0ba" + +subseparator_left="\ue0bb" +subseparator_right="\ue0bd" + +set -g status-left "#[fg=#c6c8d1,bg=#454b68,bold] $module_left_1 #[fg=#454b68,bg=#2e3244,nobold,nounderscore,noitalics]$separator_left#[fg=#c6c8d1,bg=#2e3244] $module_left_2 #[fg=#2e3244,bg=#1e2132,nobold,nounderscore,noitalics]$separator_left#[fg=#c6c8d1,bg=#1e2132] #[fg=#1e2132,bg=#1e2132,nobold,nounderscore,noitalics]$separator_left" +set -g status-right "#[fg=#1e2132,bg=#1e2132,nobold,nounderscore,noitalics]$separator_right#[fg=#c6c8d1,bg=#1e2132] #[fg=#2e3244,bg=#1e2132,nobold,nounderscore,noitalics]$separator_right#[fg=#c6c8d1,bg=#2e3244] $module_right_1 #[fg=#454b68,bg=#2e3244,nobold,nounderscore,noitalics]$separator_right#[fg=#c6c8d1,bg=#454b68,bold] $module_right_2 #{prefix_highlight}" +setw -g window-status-format "#[fg=#1e2132,bg=#1e2132,nobold,nounderscore,noitalics]$separator_right#[fg=#c6c8d1] #I $subseparator_right #W $subseparator_left#[fg=#1e2132,bg=#1e2132,nobold,nounderscore,noitalics]$separator_right" +setw -g window-status-current-format "#[fg=#2e3244,bg=#1e2132,nobold,nounderscore,noitalics]$separator_right#[fg=#c6c8d1,bg=#2e3244] #I $subseparator_right #W $subseparator_left #F #[fg=#2e3244,bg=#1e2132,nobold,nounderscore,noitalics]$separator_left" diff --git a/install.sh b/install.sh index e0bab57..6b4afe2 100755 --- a/install.sh +++ b/install.sh @@ -63,6 +63,10 @@ fi echo "Installing user binary directory to ~/bin" symlink "${DF_HOME}/bin" "${HOME}/bin" +echo "Creating needed directories" +mkdir -p "${HOME}/.tmux" +mkdir -p "${HOME}/.vim/{autoload,bundle}" + echo "Linking Configuration files..." # All the dotfiles that live in the home dir directly @@ -76,6 +80,7 @@ symlink "${DF_HOME}/.functions" "${HOME}/.functions" symlink "${DF_HOME}/.gitconfig" "${HOME}/.gitconfig" symlink "${DF_HOME}/.stalonetrayrc" "${HOME}/.stalonetrayrc" symlink "${DF_HOME}/.tmux.conf" "${HOME}/.tmux.conf" +symlink "${DF_HOME}/.tmux/iceberg.tmux.conf" "${HOME}/.tmux/iceberg.tmux.conf" symlink "${DF_HOME}/.vimrc" "${HOME}/.vimrc" symlink "${DF_HOME}/.zshrc" "${HOME}/.zshrc" @@ -113,7 +118,6 @@ CHSH='no' RUNZSH='no' KEEP_ZSHRC='yes' sh -c "$(curl -fsSL https://raw.github.co #cat "${DOTFILES}/vs_code_extensions.lst" | xargs -n 1 code --install-extension --force echo "Installing VIM Pathogen..." -mkdir -p "${HOME}/.vim/{autoload,bundle}" curl -LSs https://tpo.pe/pathogen.vim -o "${HOME}/.vim/autoload/pathogen.vim" echo "Installing VIM Sensible..."