update for new tmux

This commit is contained in:
Barak Michener 2019-06-07 13:40:00 -07:00
parent 4fb0ea1292
commit 405541f534
3 changed files with 11 additions and 15 deletions

View file

@ -42,20 +42,16 @@ set -g status-fg white
set -g status-bg default set -g status-bg default
# default window title colors # default window title colors
set-window-option -g window-status-fg white set-window-option -g window-status-style fg=white,bg=default,dim
set-window-option -g window-status-bg default
set-window-option -g window-status-attr dim
# active window title colors # active window title colors
set-window-option -g window-status-current-fg cyan set-window-option -g window-status-current-style fg=cyan,bg=default,bright
set-window-option -g window-status-current-bg default
set-window-option -g window-status-current-attr bright
set -g status-left '#[fg=green][ #H ][ ' set -g status-left '#[fg=green][ #H ][ '
set -g status-right '#[fg=green]][ #[fg=blue]%Y-%m-%d #[fg=white]%I:%M #[fg=green]]' set -g status-right '#[fg=green]][ #[bright]#[fg=blue]%Y-%m-%d #[fg=white]%I:%M #[dim]#[fg=green]]'
# Notifying if other windows has activities # Notifying if other windows has activities
setw -g monitor-activity on setw -g monitor-activity on
set -g visual-activity on set -g visual-activity on
# Highlighting the active window in status bar # Highlighting the active window in status bar
setw -g window-status-current-bg red setw -g window-status-current-style bg=red,bright

View file

@ -18,7 +18,7 @@ xrdb -merge .Xdefaults &
#gnome-settings-daemon & #gnome-settings-daemon &
#xscreensaver -no-splash & #xscreensaver -no-splash &
#kupfer --no-splash & #kupfer --no-splash &
#rofi -key-run control-space -fuzzy -terminal run_terminal & rofi -key-run control-space -fuzzy -terminal run_terminal &
#nm-applet & #nm-applet &
#gnome-sound-applet & #gnome-sound-applet &
remmina -i & remmina -i &

View file

@ -1,11 +1,11 @@
#!/usr/bin/env bash #!/usr/bin/env bash
if [ -n "`which terminator`" ]; then if [ -n "`which gnome-terminal`" ]; then
terminator gnome-terminal $@
elif [ -n "`which gnome-terminal`" ]; then elif [ -n "`which terminator`" ]; then
gnome-terminal terminator $@
elif [ -n "`which urxvt`" ]; then elif [ -n "`which urxvt`" ]; then
urxvt urxvt $@
else else
xterm xterm $@
fi fi