Skip to content

Commit 3e1dc6d

Browse files
rahuliyer95Rahul Iyer
andauthored
fix(typo): custom themes should be stored in ~/.sqlit/themes (#86)
Co-authored-by: Rahul Iyer <rahul_iyer@apple.com>
1 parent 2d48726 commit 3e1dc6d

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

sqlit/domains/shell/app/theme_manager.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@
3434
)
3535

3636
CUSTOM_THEME_SETTINGS_KEY = "custom_themes"
37-
CUSTOM_THEME_DIR = Path.home() / ".slit" / "themes"
37+
CUSTOM_THEME_DIR = Path.home() / ".sqlit" / "themes"
3838
CUSTOM_THEME_FIELDS = {
3939
"name",
4040
"primary",

sqlit/domains/shell/ui/screens/theme.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -114,7 +114,7 @@ def compose(self) -> ComposeResult:
114114
shortcuts = [("Add", "<enter>"), ("Cancel", "<esc>")]
115115
with Dialog(id="custom-theme-dialog", title="Add Theme", shortcuts=shortcuts):
116116
yield Static(
117-
"Enter theme name (template created in ~/.slit/themes/<name>.json):",
117+
"Enter theme name (template created in ~/.sqlit/themes/<name>.json):",
118118
id="custom-theme-description",
119119
)
120120
container = Container(id="custom-theme-container")

0 commit comments

Comments
 (0)