Keyboard shortcuts

Press or to navigate between chapters

Press S or / to search in the book

Press ? to show this help

Press Esc to hide this help

Theming

Themes are defined in config/themes.toml. Change the active theme and save — dwm, terminal, rofi, and polybar all update instantly. No restart needed.

[active]
theme = "nord"   # ← change this line to switch themes

Available Themes

Dark

ThemeDescription
nordArctic, cool blue palette (default)
draculaPurple-tinted dark theme
gruvboxWarm retro earth tones
catppuccinMocha variant — soft pastels
tokyonightDeep blue-grey night theme
onedarkAtom One Dark inspired
solarizedDark variant of Solarized
rosepineMuted rose/pine tones
everforestMuted green forest palette
monochromeBlack and white minimal

Light

ThemeDescription
catppuccin-latteCatppuccin light variant
gruvbox-lightWarm light tones
solarized-lightClassic Solarized light
rosepine-dawnRose Pine dawn variant
tokyonight-dayTokyo Night day variant

Border Size

[appearance]
borderpx = 1   # 0 = no border, 1 = thin (default), 2-3 = thicker

What Each Theme Controls

Each [theme.name] section sets colors for all components:

KeyApplies To
normfgcolor / normbgcolor / normbordercolorUnfocused bar and windows
selfgcolor / selbgcolor / selbordercolorFocused window and active tag
term_bg / term_fg / term_cursorTerminal background, text, cursor
term_color0term_color15Full 16-color terminal palette
ghostty_themeGhostty built-in theme name
rofi_themeRofi .rasi theme (filename without extension)
polybar_bg / polybar_fg / polybar_accent / polybar_urgentPolybar colors
dark_modeGTK dark preference (true / false)

Creating a Custom Theme

Add a new section to themes.toml:

[theme.mytheme]
normfgcolor     = "#cdd6f4"
normbgcolor     = "#1e1e2e"
normbordercolor = "#313244"
selfgcolor      = "#cdd6f4"
selbgcolor      = "#89b4fa"
selbordercolor  = "#89b4fa"

term_bg         = "#1e1e2e"
term_fg         = "#cdd6f4"
term_cursor     = "#f5e0dc"
# ... term_color0–15 ...

ghostty_theme   = "Catppuccin Mocha"
rofi_theme      = "sidetab-catppuccin"
polybar_bg      = "#1e1e2e"
polybar_fg      = "#cdd6f4"
polybar_bg_alt  = "#313244"
polybar_fg_alt  = "#a6adc8"
polybar_accent  = "#89b4fa"
polybar_urgent  = "#f38ba8"
dark_mode       = true

Then set theme = "mytheme" under [active] and save.


Applying Themes via Control Center

Open the Control Center with Super + F1, navigate to Appearance → Select Theme, and pick from the list. The theme switches immediately.


Rofi Themes

Rofi theme files live in config/rofi/themes/. The active theme’s rofi_theme key selects which .rasi file is used.

Available rofi themes: nord, onedark, catppuccin, dracula, gruvbox, everforest, monochrome, rosepine, solarized, tokyonight.

Wallpapers

Place images in ~/Pictures/backgrounds/. Use Super + Shift + W to randomize, or set a specific one:

feh --bg-fill ~/Pictures/backgrounds/mywall.jpg
Last change: