summaryrefslogtreecommitdiff
path: root/lua
diff options
context:
space:
mode:
authorjacqueline <me@jacqueline.id.au>2024-09-10 14:42:40 +1000
committerjacqueline <me@jacqueline.id.au>2024-09-10 14:42:40 +1000
commit50d6efada5bfa2b23a3e1830051475e95d33eb53 (patch)
tree825fcc777009a3fe4066dab5cc4ea3413c10c5ee /lua
parentacdc9789c90ed6f083d054cd07930e020123457f (diff)
downloadtangara-fw-50d6efada5bfa2b23a3e1830051475e95d33eb53.tar.gz
Use '/sd' instead of '/sdcard' for accessing the sd card
it's cleaner
Diffstat (limited to 'lua')
-rw-r--r--lua/settings.lua2
1 files changed, 1 insertions, 1 deletions
diff --git a/lua/settings.lua b/lua/settings.lua
index 9b77274d..ae9a6e6d 100644
--- a/lua/settings.lua
+++ b/lua/settings.lua
@@ -319,7 +319,7 @@ local ThemeSettings = SettingsScreen:new {
local theme_dir_iter = filesystem.iterator("/.themes/")
for dir in theme_dir_iter do
local theme_name = tostring(dir):match("(.+).lua$")
- themeOptions[theme_name] = "/sdcard/.themes/" .. theme_name .. ".lua"
+ themeOptions[theme_name] = "/sd/.themes/" .. theme_name .. ".lua"
end
local saved_theme = theme.theme_filename();