diff options
author | David Morgan <david.morgan@gmail.com> | 2016-04-11 08:36:10 -0400 |
---|---|---|
committer | David Morgan <david.morgan@gmail.com> | 2016-04-11 08:36:10 -0400 |
commit | dcb64af5bc4d23c54745b0a2b562cef048fc23a2 (patch) | |
tree | 8e6f14d7ff2c5d7918773009c363c45f7ab07989 | |
parent | bc8d66d1476c59957b8152358ff9b0f3d84936bd (diff) | |
download | dotfiles-dcb64af5bc4d23c54745b0a2b562cef048fc23a2.tar.gz |
Add tmux.conf and (no longer used) screenrc
-rw-r--r-- | .screenrc | 14 | ||||
-rw-r--r-- | .tmux.conf | 35 |
2 files changed, 49 insertions, 0 deletions
diff --git a/.screenrc b/.screenrc new file mode 100644 index 0000000..4cbe631 --- /dev/null +++ b/.screenrc @@ -0,0 +1,14 @@ +defutf8 on +encoding UTF-8 +vbell off +defnonblock 5 +backtick 1 10 10 /home/djm/bin/showmail.sh + +hardstatus alwayslastline "%{=}%{g}[ %{B}%D%d/%m%{W}%c:%s %{g}][%=%{w}%?%-Lw%?%{r}(%{W}%n*%f%?(%u)%?%{r})%{w}%?%+Lw%?%?%=%{g}][%=%1` ]" + + + +#hardstatus alwayslastline "%{=}%{g}[%{B} %D %d/%m%{W}%c:%s %{g}][%= %{w}%?%-Lw%?%{r}(%{W}%n*%f %t%?(%u)%?%{r})%{w}%?%+Lw%?%?%= %{g}]%=%1`" +#hardstatus alwayslastline "%{=}%{g}[%{B} %D %d/%m%{W}%c:%s %{g}][%= %{w}%?%-Lw%?%{r}(%{W}%n*%f %t%?(%u)%?%{r})%{w}%?%+Lw%?%?%= %{g}][ %{W}:%l %{g}]" +#hardstatus alwayslastline "%{= kw}%?%-Lw%?%{= kw}%n*%f %t%?(%u)%?%{= kw}%?%+Lw%?%{= kw} %=%1` %c %m/%d/%Y" + diff --git a/.tmux.conf b/.tmux.conf new file mode 100644 index 0000000..cfe79e7 --- /dev/null +++ b/.tmux.conf @@ -0,0 +1,35 @@ +unbind C-b +set -g prefix C-a +bind-key C-a last-window +bind-key a send-prefix + +set-window-option -g automatic-rename off +set-option -g allow-rename off + +set -g bell-action current + +set -g status-bg black +set -g status-fg white + +setw -g window-status-current-fg cyan +setw -g window-status-current-format "#[fg=red,bold][#[fg=default]#F#I:#W#F#[fg=red,bold]]#[default]" +setw -g window-status-format "#[fg=green]{#[default]#F#I:#W#F#[fg=green]}#[default]" + +set -g status-left-length 17 + +set -g status-interval 1 +#set -g status-left "#[fg=green](#[bold]#S#[nobold])#[fg=green,nobold]@#[bold]#H#[default]" + +## for sif +#set -g status-left "#[fg=green](#[bold]#S#[nobold])#[fg=green,nobold]@#[fg=magenta]#H#[default]" +#set -g status-right "#[fg=blue,bold]%a%d/%m#[fg=yellow]%H:%M:%S" + +## for tyr +#set -g status-left "#[fg=green](#[bold]#S#[nobold])#[fg=green,nobold]@#[fg=cyan]#H#[default]" +#set -g status-right "#[fg=blue,bold]%a%d/%m#[fg=yellow]%H:%M:%S" + +## for basil +#set -g status-left "#[fg=green](#[bold]#S#[nobold])#[fg=green,nobold]@#[fg=yellow]#H#[default]" +set -g status-left "#[fg=yellow]#H#[default]" +set -g status-right "#[fg=magenta,bold]#(/home/djm/bin/showmail.sh)#[fg=blue]%a%d/%m#[fg=yellow]%H:%M:%S" + |