mirror of
https://github.com/kovidgoyal/kitty.git
synced 2026-05-13 16:37:27 +00:00
Cleanup icdir creation
This commit is contained in:
parent
0c193c3ab7
commit
d55a86e39b
1 changed files with 4 additions and 6 deletions
10
setup.py
10
setup.py
|
|
@ -908,13 +908,11 @@ def create_linux_bundle_gunk(ddir: str, libdir_name: str) -> None:
|
|||
run_tool([make, 'docs'])
|
||||
copy_man_pages(ddir)
|
||||
copy_html_docs(ddir)
|
||||
icdir = os.path.join(ddir, 'share', 'icons', 'hicolor', '256x256', 'apps')
|
||||
safe_makedirs(icdir)
|
||||
shutil.copy2('logo/kitty.png', icdir)
|
||||
for (icdir, ext) in {'256x256': 'png', 'scalable': 'svg'}.items():
|
||||
icdir = os.path.join(ddir, 'share', 'icons', 'hicolor', icdir, 'apps')
|
||||
safe_makedirs(icdir)
|
||||
shutil.copy2(f'logo/kitty.{ext}', icdir)
|
||||
deskdir = os.path.join(ddir, 'share', 'applications')
|
||||
icscaldir = os.path.join(ddir, 'share', 'icons', 'hicolor', 'scalable', 'apps')
|
||||
safe_makedirs(icscaldir)
|
||||
shutil.copy2('logo/kitty.svg', icscaldir)
|
||||
safe_makedirs(deskdir)
|
||||
with open(os.path.join(deskdir, 'kitty.desktop'), 'w') as f:
|
||||
f.write(
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue