A file manager for Solid pods with support for multiple visual themes, inspired by Tim Berners-Lee.
NextFM is a file manager for Solid pods that allows users to browse, upload, download, and manage their files in their Solid pod storage. It supports various file operations and provides a visual interface for interacting with Solid storage.
- Authentication with Solid identity providers
- Browse files and folders
- Upload and download files
- Create, rename, and delete folders
- Move files between folders
- View images and text/code files
- Multiple selection mode
- Drag and drop file moving
- Multiple theme support (Default, NeXT, and Winamp skins)
NextFM supports multiple visual themes:
- Default Theme - Clean, modern interface with rounded corners and a light color scheme
- NeXT Theme - A retro theme inspired by the NeXTSTEP operating system that Tim Berners-Lee used when creating the World Wide Web
- Winamp Skins - Import and use classic Winamp skins (.wsz files) to customize the interface
You can switch between themes using the theme selector in the top-right corner of the application.
NextFM supports importing and using classic Winamp skins:
- Click the "Import Winamp Skin" button next to the theme selector
- Select a Winamp skin file (.wsz format)
- The skin will be processed and applied to the interface automatically
- Imported skins are saved in your browser's localStorage and will appear in the theme dropdown for future use
Winamp skins are analyzed to extract color information which is then applied to NextFM's interface elements. This provides a nostalgic look inspired by the classic media player.
You can find classic Winamp skins at these resources:
- Winamp Skin Museum - Browse and download thousands of classic Winamp skins
- Internet Archive's Winamp Skin Collection
- DeviantArt Winamp Skin Collection
- Winamp skin support works in all modern browsers (Chrome, Firefox, Safari, Edge)
- Skins are stored in your browser's localStorage, so they persist across sessions
- The feature uses JSZip to extract and analyze the .wsz files client-side
- Only the color information is extracted; the specific UI elements of Winamp are not reproduced
- Memory usage is minimal as only the color data is stored, not the entire skin
Developers can add new themes by:
- Adding the theme name to the
THEMESobject insrc/themes/themeContext.js - Adding theme classes to
src/themes/themeStyles.js - Updating the theme selector component in
src/components/ThemeSelector.js
- Node.js (v14 or later)
- npm or yarn
# Clone the repository
git clone https://github.com/inrupt/nextfm.git
cd nextfm
# Install dependencies
npm install
# Start the development server
npm startnpm run buildMIT License