From 9bef53459f133e511df36f905a30ba002d56f189 Mon Sep 17 00:00:00 2001 From: Kovid Goyal Date: Wed, 8 Nov 2017 17:38:34 +0530 Subject: [PATCH] Fix application icon not being placed in apps sub-directory in linux bundle --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index edf1531b9..6b947d1fd 100755 --- a/setup.py +++ b/setup.py @@ -417,7 +417,7 @@ def package(args, for_bundle=False): # {{{ safe_makedirs(launcher_dir) build_linux_launcher(args, launcher_dir, for_bundle) if not isosx: # {{{ linux desktop gunk - icdir = os.path.join(ddir, 'share', 'icons', 'hicolor', '256x256') + icdir = os.path.join(ddir, 'share', 'icons', 'hicolor', '256x256', 'apps') safe_makedirs(icdir) shutil.copy2('logo/kitty.png', icdir) deskdir = os.path.join(ddir, 'share', 'applications')