commit b5532997106f5021fc1e0d01a84ecb26530f0ae3 (patch)
parent a99264db7f3b9b7b0cdf6a9f892af3ce846f09d9
Author: Alex Karle <alex@alexkarle.com>
Date: Sun, 20 Feb 2022 13:52:29 -0500
theme: Update tmux, X11, and cwm to use rio(1)/plan9 theme
This is mostly for funsies, but I'm really digging it!
Diffstat:
3 files changed, 16 insertions(+), 5 deletions(-)
diff --git a/.cwmrc b/.cwmrc
@@ -4,6 +4,11 @@
command term /usr/local/bin/st
command firefox /usr/local/bin/firefox
+# Look (plan9 rio(1) inspired)
+borderwidth 4
+color activeborder "#55aaaa"
+color inactiveborder "#9eeeee"
+
# Bindings
# start fresh -- no alarms and no surprises
unbind-key all
diff --git a/.tmux.conf b/.tmux.conf
@@ -25,7 +25,13 @@ bind-key c new-window -c "#{pane_current_path}"
set-option -g base-index 1
set-option -g renumber-windows on
-# Use acme color'd status bar!
-# Still undecided between eaffff and 55aaaa...
-set-option -g status-style bg=#EAFFFF,fg=#000000
+# Use plan9 rio(1) inpired colors!
+set-option -g status-style bg=#EAFFEA,fg=#000000
set-option -g pane-active-border-style fg=#8888cc
+set-option -g message-command-style bg=#EAFFFF,fg=#000000
+set-option -g message-style bg=#EAFFFF,fg=#000000
+set-option -g mode-style bg=#EEEE9E,fg=#000000
+set-option -g copy-mode-match-style bg=#EEEE9E,fg=#000000
+set-option -g copy-mode-mark-style bg=#EEEE9E,fg=#000000
+set-option -g copy-mode-current-match-style bg=#EAFFEA,fg=#000000
+
diff --git a/.xsession b/.xsession
@@ -6,8 +6,8 @@
setxkbmap -option ctrl:nocaps
# Set the background to something that isn't the default
-# (this color is from www.openbsd.org's dark theme!)
-xsetroot -solid "#1E1F21"
+# (this color is from plan9's rio(1) default background )
+xsetroot -solid "#777777"
# Source ~/.profile to set up the PATH so terminals like st(1)
# that don't spawn login shells get the env vars they expect