dotfiles

my shiny new dotfiles
git clone git://git.jakekoroman.com/dotfiles
Log | Files | Refs | README

commit a474b0c4f45662573187bbe66095dfb7dc9a5d7f
parent e6f88147d9029dedd7d5968f9f73dc3e861c9500
Author: Jake Koroman <jakekoroman@gmail.com>
Date:   Sun, 28 Jul 2024 16:24:49 -0400

merging latpop.

Diffstat:
Mdevice-specific/laptop/dwl-hardware.h | 19++++++++++++++++++-
Mdevice-specific/laptop/emacs.el | 2+-
2 files changed, 19 insertions(+), 2 deletions(-)

diff --git a/device-specific/laptop/dwl-hardware.h b/device-specific/laptop/dwl-hardware.h @@ -6,6 +6,23 @@ #define DEVICE_FONT "monospace:size=10" #ifndef NOT_DWL +#define COLOR(hex) { ((hex >> 24) & 0xFF) / 255.0f, \ + ((hex >> 16) & 0xFF) / 255.0f, \ + ((hex >> 8) & 0xFF) / 255.0f, \ + (hex & 0xFF) / 255.0f } + +static const float rootcolor[] = COLOR(0x222222ff); +static const float bordercolor[] = COLOR(0x181818ff); +/* static const float focuscolor[] = COLOR(0x3465a4ff); */ +static const float focuscolor[] = COLOR(0xe78284ff); +static const float urgentcolor[] = COLOR(0xa40000ff); + +void +initenv(void) +{ + setenv("THEME", "solarized", 1); +} + /* monitors */ static const MonitorRule monrules[] = { /* NOTE: ALWAYS add a fallback rule, even if you are completely sure it won't be used */ @@ -22,7 +39,7 @@ static const char *const autostart[] = { "preserve_dbus.sh", NULL, "davmail_launch", NULL, "baraction.sh", NULL, - /* "wbg", "/home/jake/Pictures/wallpaper", NULL, */ + "wbg", "/home/jake/Pictures/wallpaper", NULL, NULL /* terminate */ }; diff --git a/device-specific/laptop/emacs.el b/device-specific/laptop/emacs.el @@ -5,6 +5,6 @@ ;; (toggle-frame-maximized) (set-default 'truncate-lines t) ;; (list-colors-display) for a color picker -(load-theme 'liso t) +(load-theme 'solarized-dark t) ;; (update-theme) (transparency 100)