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
# default window title colors
set-window-option -g window-status-fg white
set-window-option -g window-status-bg default
set-window-option -g window-status-attr dim
set-window-option -g window-status-style fg=white,bg=default,dim
# active window title colors
set-window-option -g window-status-current-fg cyan
set-window-option -g window-status-current-bg default
set-window-option -g window-status-current-attr bright
set-window-option -g window-status-current-style fg=cyan,bg=default,bright
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
setw -g monitor-activity on
set -g visual-activity on
# 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 &
#xscreensaver -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 &
#gnome-sound-applet &
remmina -i &

View file

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