From 9ec006a1b21beaf1daf2f19d8e870f18a52ce6f1 Mon Sep 17 00:00:00 2001 From: Roberto Aguilar Date: Sun, 31 Aug 2025 22:21:27 -0600 Subject: [PATCH] Fix Minecraft installation I tried to install `Minecraft` through Omarchy's menu, however it fails with the following error message: error: target not found: minecraft-launcher This occurs because, according to Arch's documentation, the package is available through AUR rather than the official repositories. Reference: https://wiki.archlinux.org/title/Minecraft#Installation --- bin/omarchy-menu | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bin/omarchy-menu b/bin/omarchy-menu index 2996810..437cfe4 100755 --- a/bin/omarchy-menu +++ b/bin/omarchy-menu @@ -243,7 +243,7 @@ show_install_gaming_menu() { case $(menu "Install" " Steam\n RetroArch [AUR]\n󰍳 Minecraft") in *Steam*) present_terminal omarchy-install-steam ;; *RetroArch*) aur_install_and_launch "RetroArch" "retroarch retroarch-assets libretro libretro-fbneo" "com.libretro.RetroArch.desktop" ;; - *Minecraft*) install_and_launch "Minecraft" "minecraft-launcher" "minecraft-launcher" ;; + *Minecraft*) aur_install_and_launch "Minecraft [AUR]" "minecraft-launcher" "minecraft-launcher" ;; *) show_install_menu ;; esac }