Removing urvt transparency, cleanup tmux config: remove mouse support, fix colors using new style syntax
This commit is contained in:
@@ -19,7 +19,6 @@ bind c new-window -c '#{pane_current_path}'
|
|||||||
|
|
||||||
# stop tmux from renaming the window every time you run a command
|
# stop tmux from renaming the window every time you run a command
|
||||||
set-option -g allow-rename off
|
set-option -g allow-rename off
|
||||||
set-option -g pane-active-border-fg blue
|
|
||||||
|
|
||||||
# select panes with vim keys
|
# select panes with vim keys
|
||||||
bind h select-pane -L
|
bind h select-pane -L
|
||||||
@@ -39,12 +38,11 @@ set -g mode-keys vi
|
|||||||
|
|
||||||
# enable mouse control (click wind, panes, resizable panes) - as of tmux 2.1
|
# enable mouse control (click wind, panes, resizable panes) - as of tmux 2.1
|
||||||
# copy/paste: shift+left click to highlight, then shift+middle to past
|
# copy/paste: shift+left click to highlight, then shift+middle to past
|
||||||
if-shell '[ $(echo "$(tmux -V | cut -d" " -f2) >= 2.1" | bc) -eq 1 ]' \
|
## tmux < 2.1
|
||||||
'set -g mouse on' \
|
#set -g mode-mouse on; set -g mouse-resize-pane on; set -g mouse-select-pane on; set -g mouse-select-window on
|
||||||
'set -g mode-mouse on; set -g mouse-resize-pane on; set -g mouse-select-pane on; set -g mouse-select-window on'
|
## tmux >= 2.1
|
||||||
|
#set -g mouse on
|
||||||
|
|
||||||
#set -g mouse on
|
|
||||||
#'set -g mouse on; set -g mouse-utf8 on' \
|
|
||||||
|
|
||||||
bind-key Tab last-window
|
bind-key Tab last-window
|
||||||
bind-key BTab previous-window
|
bind-key BTab previous-window
|
||||||
@@ -71,10 +69,8 @@ set-option -g status-right-length 40
|
|||||||
set-option -g status-right " #[fg=brightwhite,bg=black] %a, %d %b %H:%M #[fg=colour18,bg=colour4] #(whoami)@#h "
|
set-option -g status-right " #[fg=brightwhite,bg=black] %a, %d %b %H:%M #[fg=colour18,bg=colour4] #(whoami)@#h "
|
||||||
|
|
||||||
# Pane border
|
# Pane border
|
||||||
set-option -g pane-border-bg default
|
set-option -g pane-border-style bg=brightblack,fg=brightblack
|
||||||
set-option -g pane-border-fg brightblack
|
set-option -g pane-active-border-style bg=default,fg=white
|
||||||
set-option -g pane-active-border-bg default
|
|
||||||
set-option -g pane-active-border-fg white
|
|
||||||
|
|
||||||
# Pane number indicator
|
# Pane number indicator
|
||||||
set-option -g display-panes-colour brightblack
|
set-option -g display-panes-colour brightblack
|
||||||
@@ -83,7 +79,3 @@ set-option -g display-panes-active-colour brightwhite
|
|||||||
# Clock mode
|
# Clock mode
|
||||||
set-option -g clock-mode-colour white
|
set-option -g clock-mode-colour white
|
||||||
set-option -g clock-mode-style 24
|
set-option -g clock-mode-style 24
|
||||||
|
|
||||||
# REQUIRES TMUX 2.x
|
|
||||||
# use F12 to move to inner/outer tmux sessions when nested
|
|
||||||
# https://medium.freecodecamp.org/tmux-in-practice-local-and-nested-remote-tmux-sessions-4f7ba5db8795
|
|
||||||
|
|||||||
@@ -1,8 +1,14 @@
|
|||||||
URxvt*scrollBar: false
|
URxvt*scrollBar: false
|
||||||
URxvt.font: xft:Terminus:size=14:antialias=true
|
URxvt.font: xft:Terminus:size=14:antialias=true
|
||||||
URxvt.boldFont: xft:Terminus:bold:size=14:antialias=true
|
URxvt.boldFont: xft:Terminus:bold:size=14:antialias=true
|
||||||
URxvt*transparent: true
|
URxvt*inheritPixmap: false
|
||||||
URxvt*shading: 5
|
!URxvt*transparent: false
|
||||||
|
!URxvt*shading: 5
|
||||||
|
|
||||||
|
!!! Real transparency (compositing)
|
||||||
|
!urxvt.depth: 32
|
||||||
|
!urxvt*background: rgba:0000/0000/0200/c800
|
||||||
|
!URxvt.background: rgba:1111/1111/1111/dddd
|
||||||
|
|
||||||
URxvt*perl-ext-common: default,matcher
|
URxvt*perl-ext-common: default,matcher
|
||||||
URxvt*matcher.button: 1
|
URxvt*matcher.button: 1
|
||||||
@@ -14,7 +20,6 @@ URxvt*.termName: rxvt-unicode-256color
|
|||||||
|
|
||||||
! special
|
! special
|
||||||
*.foreground: #c5c8c6
|
*.foreground: #c5c8c6
|
||||||
!*.background: #1d1f21
|
|
||||||
*.background: #222222
|
*.background: #222222
|
||||||
*.cursorColor: #c5c8c6
|
*.cursorColor: #c5c8c6
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user