-
Notifications
You must be signed in to change notification settings - Fork 479
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Chore (Windows): set exe file icon to fastfetch logo
- Loading branch information
Showing
3 changed files
with
11 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
#!/bin/sh | ||
# Convert logo.svg to logo.ico | ||
rsvg-convert -w 16 -h 16 logo.svg > logo16.png | ||
rsvg-convert -w 32 -h 32 logo.svg > logo32.png | ||
rsvg-convert -w 48 -h 48 logo.svg > logo48.png | ||
rsvg-convert -w 64 -h 64 logo.svg > logo64.png | ||
rsvg-convert -w 128 -h 128 logo.svg > logo128.png | ||
rsvg-convert -w 256 -h 256 logo.svg > logo256.png | ||
convert logo16.png logo32.png logo48.png logo64.png logo128.png logo256.png logo.ico | ||
rm logo16.png logo32.png logo48.png logo64.png logo128.png logo256.png |
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters