# Minimal Profile A Nextcloud 33 app that hides profile fields to create a minimal user profile. ## Installation 1. Copy the `minimalprofile` folder to your Nextcloud `apps/` directory 2. Enable the app: ```bash occ app:enable minimalprofile ``` ## Usage Open browser console (F12) on the settings page and run: ```javascript // Hide pronouns localStorage.setItem('minimalprofile_hidden', JSON.stringify(['pronouns'])) // Hide multiple fields localStorage.setItem('minimalprofile_hidden', JSON.stringify(['pronouns','role','headline'])) // Show all fields localStorage.removeItem('minimalprofile_hidden') ``` Then refresh the page. ## Available Fields | Field | Description | |-------|-------------| | `pronouns` | User pronouns (e.g., she/her) | | `role` | Job title / role | | `headline` | Personal tagline | ## Compatibility - Nextcloud 33