From 699473d7b583bb43b89368917871e4a9c8ec3959 Mon Sep 17 00:00:00 2001 From: _N0x Date: Wed, 5 Aug 2026 16:02:19 +0200 Subject: [PATCH] More theming --- SETUP.md | 5 +++++ {dwm => archive/dwm}/.dwm/autostart.sh | 0 dunst/.config/dunst/dunstrc | 19 ++++++++++++------- nwg/.config/nwg-bar/style.css | 7 ++++--- 4 files changed, 21 insertions(+), 10 deletions(-) rename {dwm => archive/dwm}/.dwm/autostart.sh (100%) diff --git a/SETUP.md b/SETUP.md index b30c994..c5be917 100644 --- a/SETUP.md +++ b/SETUP.md @@ -68,6 +68,11 @@ ln -sf /usr/share/themes/Orchis-Dark-Compact/gtk-4.0/gtk.css ~/.config/gtk-4.0/g ln -sf /usr/share/themes/Orchis-Dark-Compact/gtk-4.0/assets ~/.config/gtk-4.0/assets ``` +`nwg-look` can do the symlink step for you — `nwg/.config/nwg-look/config` already +has `export-gtk4-symlinks: true`. Set the gsettings values above first, then run +`nwg-look` and hit Apply; it writes `.gtkrc-2.0`, both `settings.ini` files and the +GTK4 symlinks from those values. + ### Window buttons Both `settings.ini` files set `gtk-decoration-layout=close,minimize,maximize:` diff --git a/dwm/.dwm/autostart.sh b/archive/dwm/.dwm/autostart.sh similarity index 100% rename from dwm/.dwm/autostart.sh rename to archive/dwm/.dwm/autostart.sh diff --git a/dunst/.config/dunst/dunstrc b/dunst/.config/dunst/dunstrc index ac3f839..5477c47 100644 --- a/dunst/.config/dunst/dunstrc +++ b/dunst/.config/dunst/dunstrc @@ -95,7 +95,8 @@ frame_width = 2 # Defines color of the frame around the notification window. - frame_color = "#A7C080" + # Cursor Dark: neutral by default, overridden per urgency below. + frame_color = "#2b2b2b" # Size of gap to display between notifications - requires a compositor. # If value is greater than 0, separator_height will be ignored and a border @@ -313,23 +314,27 @@ [urgency_low] # IMPORTANT: colors have to be defined in quotation marks. # Otherwise the "#" and following would be interpreted as a comment. - background = "#2E383C" - foreground = "#D3C6AA" + background = "#181818" + foreground = "#9d9d9d" + frame_color = "#2b2b2b" timeout = 10 # Icon for notifications with low urgency, uncomment to enable #icon = /path/to/icon [urgency_normal] - background = "#2E383C" - foreground = "#D3C6AA" + background = "#181818" + foreground = "#cccccc" + frame_color = "#2472c8" timeout = 10 # Icon for notifications with normal urgency, uncomment to enable #icon = /path/to/icon [urgency_critical] - background = "#900000" + # #5a1d1d is VS Code's error-validation background, so it stays in-family + # while still reading as alarming. + background = "#5a1d1d" foreground = "#ffffff" - frame_color = "#ff0000" + frame_color = "#f14c4c" timeout = 0 # Icon for notifications with critical urgency, uncomment to enable #icon = /path/to/icon diff --git a/nwg/.config/nwg-bar/style.css b/nwg/.config/nwg-bar/style.css index b677ac1..d9bab0c 100644 --- a/nwg/.config/nwg-bar/style.css +++ b/nwg/.config/nwg-bar/style.css @@ -8,12 +8,13 @@ window { } /* Inner bar container, surrounds buttons */ +/* Cursor Dark: #181818 panel, #cccccc outline */ #inner-box { - background-color: rgba (59, 66, 82, 1); + background-color: rgba (24, 24, 24, 1); border-radius: 10px; border-style: solid; border-width: 2px; - border-color: rgba (216, 222, 233, 0.7); + border-color: rgba (204, 204, 204, 0.7); padding: 10px; margin: 10px } @@ -31,5 +32,5 @@ button { } button:hover { - background-color: rgba (216, 222, 233, 0.1) + background-color: rgba (204, 204, 204, 0.1) }