Improved taglist looks

This commit is contained in:
2023-01-30 15:09:45 +01:00
parent e665b502e3
commit 5aa6a52512
18 changed files with 24 additions and 21 deletions

Binary file not shown.

Before

Width:  |  Height:  |  Size: 206 B

After

Width:  |  Height:  |  Size: 910 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 157 B

After

Width:  |  Height:  |  Size: 498 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 175 B

After

Width:  |  Height:  |  Size: 528 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 173 B

After

Width:  |  Height:  |  Size: 523 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 156 B

After

Width:  |  Height:  |  Size: 530 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 165 B

After

Width:  |  Height:  |  Size: 527 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 211 B

After

Width:  |  Height:  |  Size: 1005 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 200 B

After

Width:  |  Height:  |  Size: 582 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 184 B

After

Width:  |  Height:  |  Size: 583 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 217 B

After

Width:  |  Height:  |  Size: 601 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 239 B

After

Width:  |  Height:  |  Size: 1.1 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 231 B

After

Width:  |  Height:  |  Size: 1023 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 238 B

After

Width:  |  Height:  |  Size: 961 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 146 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 141 B

View File

@@ -4,12 +4,16 @@ import pathlib
from cairosvg import svg2png
from PIL import Image, ImageOps
SIZE = 100
part_size = SIZE//5
for svg in pathlib.Path('.').glob('*.svg'):
print(f'Converting {svg.name}...', end='')
png = svg.with_suffix('.png')
svg2png(url=str(svg), write_to=str(png), output_width=12, output_height=12)
svg2png(url=str(svg), write_to=str(png), output_width=part_size*3, output_height=part_size*3)
with Image.open(png) as img:
img.load()
border_img = ImageOps.expand(img, 4, (0, 0, 0, 0))
border_img = ImageOps.expand(img, part_size, (0, 0, 0, 0))
border_img.save(png)
print(' Done')

BIN
awesome/icons/usedtag.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 599 B