qt-settings
Installation
SKILL.md
QSettings — Persistent Application Settings
Setup and Initialization
Set application metadata before first QSettings use — these seed the default storage path:
app.setApplicationName("MyApp")
app.setOrganizationName("MyOrg")
app.setOrganizationDomain("myorg.com")
Default storage locations (no path argument needed):
- Windows: Registry
HKCU\Software\MyOrg\MyApp - macOS:
~/Library/Preferences/com.myorg.myapp.plist - Linux:
~/.config/MyOrg/MyApp.ini
Basic Usage
Related skills