Skip to content
This repository was archived by the owner on Jun 19, 2023. It is now read-only.

Commit e370bae

Browse files
authored
Icon changes to match preferred theme.
The menu bar icon will now change depending on the preferred colour theme.
1 parent 0cec43a commit e370bae

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

app.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
from re import template
12
import rumps
23
import getpass
34
import os
@@ -25,7 +26,7 @@ def check_files():
2526

2627
class BarNotes(rumps.App):
2728
def __init__(self):
28-
super(BarNotes, self).__init__("BarNotes", title=" " + Note.get_note(), icon=f"/users/{user_name}/Library/Application Support/BarNotes/icon.png")
29+
super(BarNotes, self).__init__("BarNotes", title=" " + Note.get_note(), icon=f"/users/{user_name}/Library/Application Support/BarNotes/icon.png", template=True)
2930

3031
self.logger = Logger()
3132
self.logger.log("BarNotes initialized")

0 commit comments

Comments
 (0)