X-Git-Url: https://ruderich.org/simon/gitweb/?a=blobdiff_plain;f=tmux.conf;h=3a3bb78e2654922b519143ce1a34c63454ea57ee;hb=acb0c9f9d65e504ef5a30b3c6250e043d92667a3;hp=5a69f7a65eb3a377e9686959fb5d25f18ebdaa55;hpb=667550d3424b726d074c65289c23160268576bc8;p=config%2Fdotfiles.git diff --git a/tmux.conf b/tmux.conf index 5a69f7a..3a3bb78 100644 --- 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,9 @@ bind-key C-] paste-buffer bind-key -t vi-edit C-n history-down bind-key -t vi-edit C-p history-up +# 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