diff --git a/src/userland/gui/word.c b/src/userland/gui/boredword.c similarity index 100% rename from src/userland/gui/word.c rename to src/userland/gui/boredword.c diff --git a/src/wm/explorer.c b/src/wm/explorer.c index 88b423e..12b85fb 100644 --- a/src/wm/explorer.c +++ b/src/wm/explorer.c @@ -751,7 +751,7 @@ static void explorer_open_target(const char *path) { if (explorer_str_ends_with(path, ".elf")) { process_create_elf(path, NULL); } else if (explorer_str_ends_with(path, ".pdf")) { - process_create_elf("A:/bin/word.elf", path); + process_create_elf("A:/bin/boredword.elf", path); } else if (explorer_is_markdown_file(path)) { process_create_elf("A:/bin/markdown.elf", path); } else if (explorer_str_ends_with(path, ".pnt")) { diff --git a/src/wm/wm.c b/src/wm/wm.c index 804bcfc..94e941a 100644 --- a/src/wm/wm.c +++ b/src/wm/wm.c @@ -2133,7 +2133,7 @@ void wm_handle_right_click(int x, int y) { } else if (str_starts_with(start_menu_pending_app, "Word Processor")) { Window *existing = wm_find_window_by_title("Word Processor"); if (existing) wm_bring_to_front(existing); - else process_create_elf("/bin/word.elf", NULL); + else process_create_elf("/bin/boredword.elf", NULL); } else if (str_starts_with(start_menu_pending_app, "Terminal")) { cmd_reset(); wm_bring_to_front(&win_cmd); } else if (str_starts_with(start_menu_pending_app, "Calculator")) { @@ -2247,7 +2247,7 @@ void wm_handle_right_click(int x, int y) { } else if (str_ends_with(icon->name, ".md")) { process_create_elf("/bin/markdown.elf", path); } else if (str_ends_with(icon->name, ".pdf")) { - process_create_elf("/bin/word.elf", path); + process_create_elf("/bin/boredword.elf", path); } else if (is_image_file(icon->name)) { process_create_elf("/bin/viewer.elf", path); } else {