]> ruderich.org/simon Gitweb - config/dotfiles.git/blobdiff - tmux.conf
tmux.conf: Add ^a ^t mapping to display current date.
[config/dotfiles.git] / tmux.conf
index 5a69f7a65eb3a377e9686959fb5d25f18ebdaa55..09c6ed3128d47e51ec5c40c152e85413863f466f 100644 (file)
--- a/tmux.conf
+++ b/tmux.conf
@@ -50,13 +50,16 @@ set-option -g status-bg colour12
 # Nothing left of window list.
 set-option -g status-left ""
 # Current load average and hostname on the right.
-set-option -g status-right "#(uptime | cut -d: -f5- | tr -d ,) #H"
+set-option -g status-right "#(uptime | sed 's/^.*load averages*: //; s/,//g') #H"
 
 # Format for windows in the window list in the status line. #I window index,
 # #W window number, #F window flags.
 set-window-option -g window-status-format         "#I #W#F"
 set-window-option -g window-status-current-format "#I #W#F"
 
+# Update status line commands (#(..)) only every minute.
+set-option -g status-interval 60
+
 
 # BINDINGS
 
@@ -82,4 +85,13 @@ bind-key C-] paste-buffer
 bind-key -t vi-edit C-n history-down
 bind-key -t vi-edit C-p history-up
 
+# Display date/time, similar to GNU screen's ^a ^t. Tmux's default ^a t just
+# displays the current time, but I often want to know the current date.
+bind-key C-t display-message
+
+# Run urlview on the current screen content. Very useful to follow links.
+# Thanks to Arch wiki (https://wiki.archlinux.org/index.php/Tmux) for the
+# basic idea.
+bind-key C-b capture-pane \; save-buffer ~/.tmp/tmux-urlview \; new-window "$SHELL -c 'urlview < ~/.tmp/tmux-urlview'"
+
 # vim: ft=tmux