aboutsummaryrefslogtreecommitdiffstats
path: root/.tmux.conf
diff options
context:
space:
mode:
authorDavid Runge <dave@sleepmap.de>2016-03-11 10:44:28 +0100
committerDavid Runge <dave@sleepmap.de>2016-03-11 10:44:28 +0100
commitcd00174124e876da3c0822c50920b634d5a54737 (patch)
tree1fac385ce07582d4f595c7e460df20a60c5541e0 /.tmux.conf
parent811fa21a9df0c136cafab935b6882b7541a22203 (diff)
downloaddotfiles-cd00174124e876da3c0822c50920b634d5a54737.tar.gz
dotfiles-cd00174124e876da3c0822c50920b634d5a54737.tar.bz2
dotfiles-cd00174124e876da3c0822c50920b634d5a54737.tar.xz
dotfiles-cd00174124e876da3c0822c50920b634d5a54737.zip
.tmux.conf: Adding own scripts to status-right, removing tpm.
Diffstat (limited to '.tmux.conf')
-rw-r--r--.tmux.conf24
1 files changed, 1 insertions, 23 deletions
diff --git a/.tmux.conf b/.tmux.conf
index 546fda7..6c7b056 100644
--- a/.tmux.conf
+++ b/.tmux.conf
@@ -80,7 +80,7 @@ set -g message-attr bold
# set status-interval to 2 for tmux-mem-cpu-load
set -g status-interval 1
set -g status-left '#[fg=colour235,bg=colour252,bold] #(hostname) #[fg=colour245,bg=colour238,bold] #(whoami) (#S) '
-set -g status-right '#[fg=colour23,bg=colour234]|>#[fg=white,bg=colour234] CPU:#{cpu_percentage}, Battery: #{battery_percentage} #[fg=colour23,bg=colour234]<||>#[fg=white,bg=colour234] %H:%M:%S #[fg=colour23,bg=colour234]<|'
+set -g status-right '#[fg=colour23,bg=colour234]|>#[fg=white,bg=colour234] #(~/bin/get_cpu_status) (#(~/bin/get_load)) #(~/bin/get_battery_status) #[fg=colour23,bg=colour234]<|>#[fg=white,bg=colour234] %Y%m%d #[fg=colour23,bg=colour234]<|>#[fg=white,bg=colour234] %H:%M:%S #[fg=colour23,bg=colour234]<|'
set -g window-status-format '#[fg=colour235,bg=colour252,bold] #I: #W '
set -g window-status-current-format '#[fg=black,bg=colour23,noreverse,bold] #I: #W '
@@ -109,25 +109,3 @@ bind r source-file ~/.tmux.conf
# Swap windows
bind-key m command-prompt -p "move window to:" "swap-window -t '%%'"
-
-# List of plugins
-# Supports `github_username/repo` or full git repo URLs
-set -g @tpm_plugins ' \
- tmux-plugins/tpm \
- tmux-plugins/tmux-sensible \
- tmux-plugins/tmux-cpu \
- tmux-plugins/tmux-yank \
- tmux-plugins/tmux-open \
- tmux-plugins/tmux-battery \
- tmux-plugins/tmux-logging \
- tmux-plugins/tmux-online-status \
- tmux-plugins/tmux-sidebar \
- '
-# Other examples:
-# github_username/plugin_name \
-# git@github.com/user/plugin \
-# git@bitbucket.com/user/plugin \
-
-# Initializes TMUX plugin manager.
-# Keep this line at the very bottom of tmux.conf.
-run-shell '~/.tmux/plugins/tpm/tpm'