Skip to content

Commit

Permalink
meh
Browse files Browse the repository at this point in the history
  • Loading branch information
RainbowTabitha committed Feb 4, 2024
1 parent 9c81f19 commit 10f3c43
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions main.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,6 @@
import pyperclip

from CTkToolTip import *
from plyer import notification
from functools import partial

from functions import *
Expand All @@ -24,7 +23,12 @@
try:
from mac_notifications import client
except:
pass # Any OS other then Winodws
pass

try:
from plyer import notification
except:
pass

customtkinter.set_appearance_mode("Dark") # Modes: "System" (standard), "Dark", "Light"
customtkinter.set_default_color_theme("blue") # Themes: "blue" (standard), "green", "dark-blue"
Expand Down

0 comments on commit 10f3c43

Please sign in to comment.