-
Notifications
You must be signed in to change notification settings - Fork 1
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
chore: Cleanup and small app updates #42
Conversation
- uninstall Dropover and PastePal - remove deprecated cowsay - install syntax-highlight - add delete-squashed git alias - enable sudo in starship - script tweaks
Reviewer's Guide by SourceryThis PR implements various system maintenance and cleanup changes across configuration files and scripts. The changes focus on improving app management scripts, updating configuration files, and cleaning up unused applications. Class diagram for updated app management scriptsclassDiagram
class InstallScript {
+installed_casks: List
+installed_formulas: List
+uv_sync()
+mas_sync()
+populate_installed_apps()
}
class LocalScript {
+register_iStatMenus()
}
class AppsToml {
-Dropover
-PastePal
+syntax-highlight
}
class StarshipConfig {
+truncation_symbol: String
+sudo: Boolean
}
class GitConfig {
+delete-squashed: Alias
}
note for InstallScript "Ensures yq is installed, updates app management logic"
note for LocalScript "Reorders iStat Menus registration logic"
note for AppsToml "Removes Dropover and PastePal, adds syntax-highlight"
note for StarshipConfig "Adds truncation symbol and enables sudo"
note for GitConfig "Adds delete-squashed alias"
File-Level Changes
Tips and commandsInteracting with Sourcery
Customizing Your ExperienceAccess your dashboard to:
Getting Help
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Hey @martimlobao - I've reviewed your changes and they look great!
Here's what I looked at during the review
- 🟡 General issues: 1 issue found
- 🟢 Security: all looks good
- 🟢 Testing: all looks good
- 🟢 Complexity: all looks good
- 🟢 Documentation: all looks good
Help me be more useful! Please click 👍 or 👎 on each comment and I'll use the feedback to improve your reviews.
Summary by Sourcery
Clean up and update application configurations and scripts by removing deprecated and unused applications, adding new utilities, and enhancing existing scripts for better functionality.
Enhancements:
Chores: