Files
Windows-11-Clipboard-Histor…/src-tauri/icons/README.md
2025-12-11 01:58:08 -03:00

1003 B

Icon Generation

To generate the required icon files, you can use ImageMagick:

# Install ImageMagick if not already installed
# Ubuntu/Debian: sudo apt install imagemagick
# Fedora: sudo dnf install ImageMagick
# Arch: sudo pacman -S imagemagick

# Generate PNG icons from SVG
convert -background transparent icon.svg -resize 32x32 32x32.png
convert -background transparent icon.svg -resize 128x128 128x128.png
convert -background transparent icon.svg -resize 256x256 128x128@2x.png
convert -background transparent icon.svg -resize 128x128 icon.png

# Generate ICO for Windows (if needed)
convert icon.svg -resize 256x256 -define icon:auto-resize=256,128,64,48,32,16 icon.ico

# Generate ICNS for macOS (if needed)
# You'll need to create an iconset folder and use iconutil on macOS

Alternatively, use an online tool like:

For now, placeholder PNG files are included. Replace them with properly generated icons.