From 33120bb780f92a2c1edbf3a4af2d21ddc76f9b4e Mon Sep 17 00:00:00 2001 From: Florian Bruhin Date: Mon, 15 Dec 2014 22:45:03 +0100 Subject: [PATCH] Add .ico file to freeze.py. Fixes #322. --- scripts/freeze.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/scripts/freeze.py b/scripts/freeze.py index 2efc5c54c..78152b536 100755 --- a/scripts/freeze.py +++ b/scripts/freeze.py @@ -71,7 +71,9 @@ base = 'Win32GUI' if sys.platform.startswith('win') else None executable = cx.Executable('qutebrowser/__main__.py', base=base, targetName='qutebrowser.exe', shortcutName='qutebrowser', - shortcutDir='ProgramMenuFolder') + shortcutDir='ProgramMenuFolder', + icon=os.path.join(BASEDIR, 'icons', + 'qutebrowser.ico')) try: setupcommon.write_git_file()