universal-ricinglisted
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
```