mirror of
https://github.com/ProtonMail/proton-bridge.git
synced 2025-12-11 13:16:53 +00:00
18 lines
384 B
Bash
Executable File
18 lines
384 B
Bash
Executable File
#!/bin/bash
|
|
|
|
# create bitmaps
|
|
for shape in rounded rectangle
|
|
do
|
|
for usage in systray syswarn app
|
|
do
|
|
group=$shape-$usage
|
|
inkscape --without-gui --export-id=$group --export-png=$group.png all_icons.svg
|
|
done
|
|
done
|
|
|
|
# mac icon
|
|
png2icns Bridge.icns rounded-app.png
|
|
|
|
# windows icon
|
|
convert rectangle-app.png -define icon:auto-resize=256,128,64,48,32,16 logo.ico
|