Skip to content

Commit

Permalink
Update: linux app icon
Browse files Browse the repository at this point in the history
  • Loading branch information
axiom90 committed Nov 1, 2024
1 parent 666147a commit c7f0938
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion build.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,11 +6,17 @@

from cx_Freeze import setup, Executable

import platform

from desktop.info import __version__ as version
from bip38.info import __author__ as author

app_name = "BIP38"
icon_path = "desktop/ui/images/icon/icon.ico"

if platform.system() == "Windows":
icon_path = "desktop/ui/images/icon/icon.ico"
else:
icon_path = "desktop/ui/images/svg/logo.svg"

msi_shortcut_table = [
(
Expand Down

0 comments on commit c7f0938

Please sign in to comment.