fix(config): clean up config symlinks - #13
Merged
Merged
Conversation
PaleBluDot
marked this pull request as ready for review
March 21, 2026 03:35
PaleBluDot
added a commit
that referenced
this pull request
Mar 21, 2026
# [1.5.0](v1.4.0...v1.5.0) (2026-03-21) ### Bug Fixes * **config:** clean up config symlinks ([#13](#13)) ([c29cb83](c29cb83)) * **config:** update dir locations ([8ff523b](8ff523b)) * **config:** work for mac only ([bb1b729](bb1b729)) ### Features * **script:** rename aclu email files ([b149540](b149540))
Owner
Author
|
🎉 This PR is included in version 1.5.0 🎉 The release is available on GitHub release Your semantic-release bot 📦🚀 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
This PR consolidates several improvements across the dotfiles setup, plus security hardening.
Symlink system overhaul
Replaced all per-tool
symlinks.txtfiles with a single unifiedconfig/symlinks.yml. Gives a central, structured view of every symlink mapping across tools and OSes, enabling the installer to useyqfor parsing instead of scattered plaintext files.New
hexclock.pyscriptAdds a color-based clock to
bin/that displays the current time as a hex color code, paired with the welcome screen.Welcome message cleanup
Simplified
bin/welcome.shto reduce noise and improve readability at shell startup.Claude Code instructions
Added
CLAUDE.mdwith repo-specific guidance: install commands, commit conventions, architecture overview, and how to add new tool configs.Settings sync
Updated VSCode
settings.jsonandcommitizen.config.jsto match current dotfiles conventions (wordwrap, scopes, etc.).Secret safety / npm auth hardening
Removed hardcoded npm auth token from
.npmrc. Token is now referenced via${NPM_TOKEN}environment variable so the file is safe to commit to a public repo. GitHub Actions already receivesNPM_TOKENvia repo secrets.Config env variable standardization
Renamed internal env var from
DOT_DIR→DOTFILESfor clarity and consistency across shell configs.New CI helper functions
Added shell functions to set GitHub repo secrets and environment variables programmatically.
Removed unused configs
Removed Spotify and WakaTime config stubs that weren't ready to be committed.
Commitizen scope expansion
Added more scopes to
commitizen.config.jsto cover CI and new config areas.Codacy static analysis fixes
Resolved violations in
bin/hexclock.py: restricted Flask server to127.0.0.1(was binding to all interfaces) and suppressed false-positive template string warning with# noqaannotation.Verified commit signing
Updated
user.signingkeyin.gitconfigto match the SSH signing key registered on GitHub (1Password), so commits show as verified.Files Changed
config/symlinks.ymlsymlinks.txtfiles)config/npm/.npmrc${NPM_TOKEN}env varbin/hexclock.pybin/welcome.shCLAUDE.mdconfig/starship/config/fastfetch/config/massCode/config/vscode/settings.jsoncommitizen.config.jsconfig/zsh/.zshrc,.zshenv,.aliasesconfig/git/.gitconfigconfig/os-only/macos/BrewfileTest Plan
./install.sh install -don a clean machine and verify all symlinks resolve correctly fromsymlinks.ymlhexclock.pyruns without error and outputs a valid hex colorNPM_TOKENset as an env var (not hardcoded)settings.jsonvia symlinkbin/hexclock.py🤖 Generated with Claude Code