summaryrefslogtreecommitdiff
path: root/src/cli/list_themes.zig
diff options
context:
space:
mode:
Diffstat (limited to 'src/cli/list_themes.zig')
-rw-r--r--src/cli/list_themes.zig5
1 files changed, 3 insertions, 2 deletions
diff --git a/src/cli/list_themes.zig b/src/cli/list_themes.zig
index 54f4c0969..e80a92286 100644
--- a/src/cli/list_themes.zig
+++ b/src/cli/list_themes.zig
@@ -77,7 +77,7 @@ const ThemeListElement = struct {
/// Two different directories will be searched for themes.
///
/// The first directory is the `themes` subdirectory of your Ghostty
-/// configuration directory. This is `$XDG_CONFIG_DIR/ghostty/themes` or
+/// configuration directory. This is `$XDG_CONFIG_HOME/ghostty/themes` or
/// `~/.config/ghostty/themes`.
///
/// The second directory is the `themes` subdirectory of the Ghostty resources
@@ -115,7 +115,8 @@ pub fn run(gpa_alloc: std.mem.Allocator) !u8 {
const stderr = std.io.getStdErr().writer();
const stdout = std.io.getStdOut().writer();
- if (global_state.resources_dir == null)
+ const resources_dir = global_state.resources_dir.app();
+ if (resources_dir == null)
try stderr.print("Could not find the Ghostty resources directory. Please ensure " ++
"that Ghostty is installed correctly.\n", .{});