← ClaudeAtlas

universal-ricinglisted

Guides generic and adaptive Linux window manager/bar configuration (BSPWM, i3, Dunst, Polybar, etc.) without assuming any specific design rules. Use when editing dotfiles or themes.
aldiipratama/dyy-plugin · ★ 0 · DevOps & Infrastructure · score 68
Install: claude install-skill aldiipratama/dyy-plugin
# Universal Ricing and Theming Skill ## Context Resolution Before making any style changes, identify the location of configuration templates: ```bash # Search for active configs find ~/.config/ -maxdepth 2 -type f -name "*config*" ``` Check if variables are centralized (e.g. using `chezmoi` data structures or central `.toml`/`.json` configuration tables) and adapt your style outputs to match the identified design parameters (e.g. colors, borders, margins). ## Config Reloading Once configuration files are modified, reload the environment cleanly without restarting the operating system: ```bash # Reload sxhkd keybindings (if applicable) pkill -USR1 -x sxhkd # Reload polybar instances polybar-msg cmd restart ```