diff options
author | Matthew Lemon <chaffinach+git@protonmail.ch> | 2022-05-23 17:06:55 +0100 |
---|---|---|
committer | Matthew Lemon <chaffinach+git@protonmail.ch> | 2022-05-23 17:06:55 +0100 |
commit | 3c15a8f8336e938573cea0a97cfb7d076c5d01ed (patch) | |
tree | 2a4f8255635f3557f55704c5d08f3b6872c42cc8 | |
parent | d3c0dcbe92ae5847746c8478c6fa0b387343f80c (diff) |
added geohot colors for tmux and PS1
-rw-r--r-- | kshrc | 9 | ||||
-rw-r--r-- | tmux.conf | 29 |
2 files changed, 35 insertions, 3 deletions
@@ -61,7 +61,8 @@ case "$(id -u)" in 0) _PS1_COLOR='\[\033[1;31m\]' ;; *) _PS1_COLOR='\[\033[32m\]' ;; esac -PS1='$_XTERM_TITLE\A $_PS1_COLOR\u@\h$_PS1_CLEAR:$_PS1_BLUE\w$_PS1_COLOR\$$_PS1_CLEAR ' +# PS1='$_XTERM_TITLE\A $_PS1_COLOR\u@\h$_PS1_CLEAR:$_PS1_BLUE\w$_PS1_COLOR\$$_PS1_CLEAR ' +export PS1="x1\[\e[31m\] \[\e[m\]\[\e[31m\]:\[\e[m\]\[\e[31m\]:\[\e[m\] \[\e[32m\]\w\[\e[m\] \[\e[34m\]ยป\[\e[m\] " todj () { CMD=cat @@ -90,6 +91,12 @@ yta() { mpv --ytdl-format=bestaudio ytdl://ytsearch:"$*" } +# completions - experimental +set -A complete_task_1 -- add sync + +# GPG agent +GPG_TTY=$(tty) +export GPG_TTY # FZF #export FZF_DEFAULT_COMMAND='ag -g ""' @@ -85,11 +85,36 @@ bind p paste-buffer #bind -t vi-copy 'v' begin-selection #bind -t vi-copy 'y' copy-selection +# geohot colors +set -g status-position bottom +set -g status-bg colour234 +set -g status-fg colour137 +set -g status-style dim +set -g status-left '' +set -g status-right '#[fg=colour233,bg=colour241,bold] %d/%m #[fg=colour233,bg=colour245,bold] %H:%M:%S ' +set -g status-right-length 50 +set -g status-left-length 20 + +setw -g window-status-current-style fg=colour81 +setw -g window-status-current-style bg=colour238 +setw -g window-status-current-style bold +setw -g window-status-current-format ' #I#[fg=colour250]:#[fg=colour255]#W#[fg=colour50]#F ' + +setw -g window-status-style fg=colour138 +setw -g window-status-style bg=colour235 +setw -g window-status-style none +setw -g window-status-format ' #I#[fg=colour237]:#[fg=colour250]#W#[fg=colour244]#F ' + +setw -g window-status-bell-style bold +setw -g window-status-bell-style fg=colour255 +setw -g window-status-bell-style bg=colour1 + + # fiddle with colors of status bar # set color for status bar #set-option -g status-bg colour240 -set-option -g status-bg black -set-option -g status-fg yellow +#set-option -g status-bg black +#set-option -g status-fg yellow #set -g status-position bottom #set -g status-style "bg=colour1" #set -g status-style "fg=colour137" |