https://github.com/systemd/brand.systemd.io
Website with systemd brand assets
https://github.com/systemd/brand.systemd.io
brand init logo system systemd
Last synced: about 1 month ago
JSON representation
Website with systemd brand assets
- Host: GitHub
- URL: https://github.com/systemd/brand.systemd.io
- Owner: systemd
- License: cc-by-sa-4.0
- Created: 2019-08-09T22:50:24.000Z (over 6 years ago)
- Default Branch: main
- Last Pushed: 2024-08-07T14:42:54.000Z (over 1 year ago)
- Last Synced: 2025-07-05T11:43:32.952Z (8 months ago)
- Topics: brand, init, logo, system, systemd
- Language: HTML
- Homepage: http://brand.systemd.io
- Size: 262 KB
- Stars: 14
- Watchers: 9
- Forks: 8
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README

# brand.systemd.io
Website with systemd brand assets
## Update assets
If you change the SVG assets, you need to re-render the assets in the PNG and PDF folders to keep them in sync.
*Note: The commands below work on Fedora, but on Debian-based systems you have to replace `rename` with `rename.ul`.*
Navigate to the SVG folder:
```
cd assets/svg
```
Render the PNGs:
```
for f in *.svg ; do rsvg-convert -f png -x 2 -y 2 $f -o $f.png ; done && rename .svg.png .png * && mv *.png ../png
```
Render the PDFs:
```
for f in *.svg ; do rsvg-convert -f pdf -x 2 -y 2 $f -o $f.pdf ; done && rename .svg.pdf .pdf * && mv *.pdf ../pdf
```