sites

public wiki contents of suckless.org
git clone git://git.suckless.org/sites
Log | Files | Refs

commit 58384783a4a8c249d5b271c531ba9bbc3c4c19e9
parent c66dfa17bb629b69e68411697a4a4c4d01c7b0ea
Author: FRIGN <dev@frign.de>
Date:   Wed,  9 Jul 2014 14:17:46 +0200

Vectorize dwm-logo

png is a great image format, especially for line-art. However,
in this case, going with svg brings some benefits:
Zooming into png-images, you get artifacts from the png-renderer.
This can easily be reproduced by zooming into the page and taking a
close look at the edges.
This means that upscaling a png in situ is not trivial. Also, the
source-code is now human-readable.

Diffstat:
Ddwm.suckless.org/dwm.png | 0
Adwm.suckless.org/dwm.svg | 5+++++
Mdwm.suckless.org/index.md | 2+-
3 files changed, 6 insertions(+), 1 deletion(-)

diff --git a/dwm.suckless.org/dwm.png b/dwm.suckless.org/dwm.png Binary files differ. diff --git a/dwm.suckless.org/dwm.svg b/dwm.suckless.org/dwm.svg @@ -0,0 +1,5 @@ +<?xml version="1.0"?> +<svg xmlns="http://www.w3.org/2000/svg" width="96" height="40"> +<path style="fill:#222" d="m 0,16 24,0 0,-16 8,0 0,32 8,0 0,-16 8,0 0,16 8,0 0,-16 +40,0 0,24 -8,0 0,-16 -8,0 0,16 -8,0 0,-16 -8,0 0,16 -64,0 z m 24,8 -16,0 0,8 16,0 z"/> +</svg> diff --git a/dwm.suckless.org/index.md b/dwm.suckless.org/index.md @@ -1,4 +1,4 @@ -![dwm](/dwm.png) +![dwm](dwm.svg) dwm is a dynamic window manager for X. It manages windows in tiled, monocle and floating layouts. All of the layouts can be applied