dotfiles

configuration files for shell, text editor, graphical environment, etc.
git clone git://src.adamsgaard.dk/dotfiles
Log | Files | Refs | README | LICENSE Back to index

commit 3f26604f9545009ccaa2c983618fa23d14578202
parent a5cb61618e6fc51d9084e7eb6acb75786fc55a79
Author: Anders Damsgaard <anders@adamsgaard.dk>
Date:   Tue, 21 May 2019 15:37:09 +0200

Update colors

Diffstat:
M.Xresources | 4++--
R.local/bin/wallpaper.sh -> .local/bin/wallpaper | 0
M.mutt/colors | 4++--
M.tmux.conf | 12+++++-------
4 files changed, 9 insertions(+), 11 deletions(-)

diff --git a/.Xresources b/.Xresources @@ -5,8 +5,8 @@ Xcursor.size: 16 ! terminal colors ------------------------------------------------------------ ! see https://ciembor.github.io/4bit -*.foreground: #4d4d4c -*.background: #ffffff +*.foreground: #c5c8c6 +*.background: #1d1f21 /* black */ *color0: #434944 diff --git a/.local/bin/wallpaper.sh b/.local/bin/wallpaper diff --git a/.mutt/colors b/.mutt/colors @@ -29,8 +29,8 @@ color index cyan default ~N color index green default "~N (~f .*stanford\.edu | ~h \"^In-[Rr]eply-[Tt]o: .*stanford\.edu\")" color index green default "~N (~f .*au\.dk | ~h \"^In-[Rr]eply-[Tt]o: .*au\.dk\")" color index red default ~F -color index yellow default "~F (~f .*stanford\.edu | ~h \"^In-[Rr]eply-[Tt]o: .*stanford\.edu\")" -color index yellow default "~F (~f .*au\.dk | ~h \"^In-[Rr]eply-[Tt]o: .*au\.dk\")" +color index brightred default "~F (~f .*stanford\.edu | ~h \"^In-[Rr]eply-[Tt]o: .*stanford\.edu\")" +color index brightred default "~F (~f .*au\.dk | ~h \"^In-[Rr]eply-[Tt]o: .*au\.dk\")" color index green default ~T color index brightwhite default ~D mono index bold ~N diff --git a/.tmux.conf b/.tmux.conf @@ -35,17 +35,15 @@ set -g status-bg default # background color for status bar set -g status-position bottom # put status bar on top or bottom set -g status-interval 2 # interval in s to update status set -g status-justify left # horizontal alignment -set -g message-style fg=white,bg=black # appearance of status messages -set -g message-command-style fg=white # appearance of status message cmds +set -g message-style fg=default,bg=default # appearance of status messages +set -g message-command-style fg=default # appearance of status message cmds # Left section of status bar set -g status-left "" -# Status bar visibility -bind -r -n M-t set status on -bind -r -n M-T set status off -bind t set status on -bind T set status off +# Toggle bar visibility +bind -r -n M-t set -g status +bind -r t set -g status # Hide status bar if there is only one window if -F "#{==:#{session_windows},1}" "set -g status off" "set -g status on"