| Server IP : 61.19.30.66 / Your IP : 216.73.216.15 Web Server : Apache/2.2.22 (Ubuntu) System : Linux klw 3.11.0-15-generic #25~precise1-Ubuntu SMP Thu Jan 30 17:39:31 UTC 2014 x86_64 User : www-data ( 33) PHP Version : 5.3.10-1ubuntu3.48 Disable Function : pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority, MySQL : ON | cURL : OFF | WGET : ON | Perl : ON | Python : ON | Sudo : ON | Pkexec : OFF Directory : /usr/share/byobu/profiles/ |
Upload File : |
############################################################################### # tmux common profile # This tmux configuration profile is intended to correspond to Byobu's # traditional GNU Screen profile # # Copyright (C) 2011 Dustin Kirkland # # Authors: Dustin Kirkland <kirkland@ubuntu.com> # # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by # the Free Software Foundation, version 3 of the License. # # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. # # You should have received a copy of the GNU General Public License # along with this program. If not, see <http://www.gnu.org/licenses/>. ############################################################################### # Initialize environment, clean up set-environment -g BYOBU_BACKEND tmux new-window -d byobu-janitor set -s escape-time 0 # Change to Screen's ctrl-a escape sequence source /usr/share/doc/tmux/examples/screen-keys.conf # On Archlinux, this file is not under the same directory source /usr/share/tmux/screen-keys.conf # Add F12 to the prefix list set -g prefix ^A,F12 # Byobu's Keybindings source $BYOBU_PREFIX/share/byobu/keybindings/f-keys.tmux set-option -g set-titles on set-option -g set-titles-string '#(whoami)@#H - byobu (#S)' set-option -g pane-active-border-bg $BYOBU_ACCENT set-option -g pane-active-border-fg $BYOBU_ACCENT set-option -g pane-border-fg $BYOBU_LIGHT set-option -g history-limit 10000 set-option -g display-panes-time 150 set-option -g display-panes-colour $BYOBU_ACCENT set-option -g display-panes-active-colour $BYOBU_HIGHLIGHT set-option -g clock-mode-colour $BYOBU_ACCENT set-option -g clock-mode-style 24 set-option -g mode-keys vi set-option -g mode-bg $BYOBU_ACCENT set-option -g mode-fg $BYOBU_LIGHT set-window-option -g window-status-attr default set-window-option -g window-status-bg $BYOBU_DARK set-window-option -g window-status-fg $BYOBU_LIGHT set-window-option -g window-status-current-attr reverse set-window-option -g window-status-current-bg $BYOBU_DARK set-window-option -g window-status-current-fg $BYOBU_LIGHT set-window-option -g window-status-alert-bg $BYOBU_DARK set-window-option -g window-status-alert-fg $BYOBU_LIGHT set-window-option -g window-status-alert-attr bold set-window-option -g automatic-rename off set-window-option -g aggressive-resize on set-window-option -g monitor-activity on # Cannot use: # - screen-bce, screen-256color-bce: tmux does not support bce # - screen-256color: vim broken without -bce set -g default-terminal "screen" # The following helps with Shift-PageUp/Shift-PageDown set -g terminal-overrides 'xterm*:smcup@:rmcup@' # Must set default-command to $SHELL, in order to not source ~/.profile # BUG: Should *not* hardcode /bin/bash here set -g default-command $SHELL set -g status-bg $BYOBU_DARK set -g status-fg $BYOBU_LIGHT set -g status-interval 1 set -g status-left-length 256 set -g status-right-length 256 set -g status-left '#(byobu-status tmux_left)' set -g status-right '#(byobu-status tmux_right)' set -g message-bg $BYOBU_ACCENT set -g message-fg white # Allow local overrides source $BYOBU_CONFIG_DIR/.tmux.conf