Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
.env/
__pycache__/
Binary file removed cryptarbitrage_icon_96px.ico
Binary file not shown.
Binary file added cryptarbitrage_icon_96px.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
3 changes: 2 additions & 1 deletion main.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,8 @@
# tkinter set up
root = Tk()
root.title("Deribit Max Pain - Cryptarbitrage")
root.iconbitmap('cryptarbitrage_icon_96px.ico')
icon = PhotoImage(file='cryptarbitrage_icon_96px.png')
root.iconphoto(True, icon)
root.minsize(400, 200)

# details frame
Expand Down