Commit Graph

10 Commits

Author SHA1 Message Date
1d4d454434 rainbow-dark: reset to default.theme + minimal rainbow
Scrap the over-engineered version. Start from irssi's default theme
(already dark-safe) and apply rainbow only where it actually earns
its keep:

- line_start: the leading '-!-' on non-message lines gets a full
  R-Y-G-C-B-M dash sequence instead of blue-blue.
- sb_act_msg: drop the %W (white) on statusbar activity — on a dark
  terminal this was the one stark-white glyph. Re-colour the whole
  activity band as a rainbow escalation: %G (quiet) -> %Y (chatter)
  -> %R (hilight), so urgency tracks the colour.
- sb_act_sep: comma separator drops to %K (dark grey) so the rainbow
  entries stand apart.

Everything else stays untouched from default.theme. No invented
24-bit escapes, no format overrides.
2026-04-21 08:59:13 -07:00
99049754f9 rainbow-dark: swap teal accent for diff-style blue (#4a90e2)
Teal wasn't landing; try diff-header blue instead. Same %z<rgb>
24-bit foreground mechanism, just a different colour value.
2026-04-21 08:54:54 -07:00
415ee5028c rainbow-dark: %z not %Z (lowercase is fg, uppercase is bg)
Previous commit used %Z005f5f, which irssi 1.4 interprets as a
24-bit *background* colour. That rendered as 'teal background
behind each affected character' — easy to miss on short glyphs,
invisible on whitespace. Foreground is %z (lowercase).
2026-04-21 08:52:06 -07:00
92c4f0bdc1 rainbow-dark: use 24-bit true-colour #005f5f for the teal accent
Earlier pass tried %X17 (256-palette idx 23), but %X isn't the
256-colour code in modern irssi — 1.4+ treats %X as a no-op for
unknown sequences, so every intended teal element was silently
falling through to the terminal default (= bright white).

irssi 1.4.5 supports %Z<rrggbb> for 24-bit foreground colour, so
use it directly: %Z005f5f renders as exactly #005f5f (dark teal),
no palette guessing.
2026-04-21 08:50:08 -07:00
6314406506 rainbow-dark: swap dark-grey accents for very dark bluish-teal
Every %K (dark grey / bright-black) swapped for %X17 — 256-colour
foreground 0x17 == palette index 23, RGB #005f5f, a very dark
teal/cyan. Applies to: body text, bracket/punctuation replaces,
message-body dim, connective text in join/part/quit/etc. formats,
dccfile name, whois values, servernotice body, wallop body.

Requires a 256-colour-capable terminal; irssi renders %X17 as
palette 23 when the terminal advertises 256 colour support (most
modern terminals do — .tmux.conf already sets TERM=screen-256color).
2026-04-21 08:44:27 -07:00
50449d73c4 rainbow-dark: more aggressive darkening
- Body text color bumped from %w (light grey, sometimes renders ~white)
  to %K (dark grey / 'bright black'), affecting msgnick and all action
  templates.
- Statusbar / info bg changed from %8 (terminal default, which some
  terminals render as reverse-video white) to explicit %0 (black) so
  the bar is reliably dark everywhere.
- Added color to spots that were falling through to terminal default:
  whois values, servernotice body, wallop_nick, wallop_action body,
  dccfile.
- Expanded 'fe-common/core' formats block to override joins, parts,
  quits, kicks, nick/topic/mode changes, aways etc. — coloured nicks
  via the existing abstracts but the surrounding 'has joined' /
  'changed the topic' verbiage now renders in dim grey instead of
  stark white.
2026-04-21 08:36:05 -07:00
6bbe277ea9 rainbow-dark: less white in message bodies; irssi: /wN window aliases
rainbow-dark.theme:
- Message body text now tinted dim grey (%w) instead of inheriting
  terminal-default (usually stark white) — done via a trailing %w in
  the msgnick template.
- Own nick in public, private, and DCC contexts switches from bold
  white (%W) to bold bright magenta (%M) so 'you' stays distinct but
  stops looking like every other bright-white element.
- Action bodies (public, private, DCC) get the same %w dim-grey tint.

.irssi/config: add W1..W99 aliases so /w1, /w2, ... /w99 jump
directly to that window (pair to the existing bare numeric /1 /2
aliases, for users whose muscle memory has 'w' in it).
2026-04-21 08:25:38 -07:00
e455702f01 Add rainbow-dark irssi theme
Dark-background theme with a full rainbow of accent colors for nicks,
statusbar items, and event markers.

Activate with:
  /set theme rainbow-dark
  /save
2026-04-21 07:58:46 -07:00
65f583fd2b Scrub hardcoded /home/dissimulo paths; use $HOME / relative symlinks
- Convert 21 absolute-path symlinks into YADR to relative paths
  (e.g. .vimrc -> .yadr/vimrc), so they resolve correctly under
  any user's $HOME after a standard YADR install.
- .fehbg: replace hardcoded background path with $HOME-based one
- .gtk-bookmarks: remove (trivially personal; GTK regenerates)
- .themes/*/index.theme: drop BackgroundImage= lines pointing at
  personal image files that other users won't have.
- .xscreensaver: scrub username from header comment.
- .irssi/config: generic dcc_download_path.
2026-04-21 06:48:06 -07:00
bc9f9d8094 Add dotfiles from home directory
Tracks shell configs (zsh/bash), vim, tmux, irssi, fonts, themes,
and ~/.local/bin scripts. Sensitive files (.ssh, .gnupg, history,
credentials) and large app data are excluded via .gitignore.
2026-04-21 06:16:16 -07:00