aboutsummaryrefslogtreecommitdiffstats
path: root/.tmux.conf
diff options
context:
space:
mode:
authorDavid Runge <dave@sleepmap.de>2016-03-11 12:30:27 +0100
committerDavid Runge <dave@sleepmap.de>2016-03-11 12:30:27 +0100
commit1339b8e7b05d70e2e5aefb5d4898d46039870767 (patch)
tree97694009c889d75fdd794236fa4c14d5cb32da71 /.tmux.conf
parentb7be00a2818fdc2c5b47a318a67c95bde3fda7f1 (diff)
parent4fddd5572d8ae4ddb8f56278c2945b10ed3ce3cb (diff)
downloaddotfiles-1339b8e7b05d70e2e5aefb5d4898d46039870767.tar.gz
dotfiles-1339b8e7b05d70e2e5aefb5d4898d46039870767.tar.bz2
dotfiles-1339b8e7b05d70e2e5aefb5d4898d46039870767.tar.xz
dotfiles-1339b8e7b05d70e2e5aefb5d4898d46039870767.zip
Merge branch 'master' of sleepmap.de:dotfiles
* 'master' of sleepmap.de:dotfiles: .gitignore: Adding further processing, arduino, qtpass, weather configs and cache folders to ignore list. .config/SuperCollider/sc_ide_conf.yaml: Post 3.7 settings .config/psd/.psd.conf: Removing backup from the index .config/conky/side: Changing to execpi for dig launch. Reversing the hostname check. .tmux.conf: Adding own scripts to status-right, removing tpm. bin/get_*: Adding helper scripts to be used in tmux. .processing/language.txt: Adding default language setting. .arduino/preferences.txt: updating sketch stuff .mutt/*: Updating footer. .config/gtk-3.0/settings.ini: Removing dark-theme settings, as they make fields in browsers unusable. Thx gnome!
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'