Group all gaming installers together

This commit is contained in:
David Heinemeier Hansson
2026-05-04 09:13:33 +02:00
parent d0e3e76df9
commit 5b288f1e28
7 changed files with 7 additions and 7 deletions
@@ -6,7 +6,7 @@
set -e
omarchy-pkg-add lutris umu-launcher wine-staging wine-mono wine-gecko winetricks python-protobuf
omarchy-install-gpu-lib32
omarchy-install-gaming-gpu-lib32
# Lutris ships with `#!/usr/bin/env python3`, which resolves to mise's Python and
# fails to import the lutris module. Pin the shebang to the system Python.
@@ -6,7 +6,7 @@
set -e
omarchy-pkg-add steam
omarchy-install-gpu-lib32
omarchy-install-gaming-gpu-lib32
echo ""
echo "Steam will start automatically now. This might take a while..."
+5 -5
View File
@@ -387,12 +387,12 @@ show_install_ai_menu() {
show_install_gaming_menu() {
case $(menu "Install" " Steam\n RetroArch\n󰍳 Minecraft\n Battle.net\n󰢹 NVIDIA GeForce NOW\n󰖺 Xbox Controller [AUR]") in
*Steam*) present_terminal omarchy-install-steam ;;
*RetroArch*) present_terminal omarchy-install-retroarch ;;
*Steam*) present_terminal omarchy-install-gaming-steam ;;
*RetroArch*) present_terminal omarchy-install-gaming-retroarch ;;
*Minecraft*) install_and_launch "Minecraft" "minecraft-launcher" "minecraft-launcher" ;;
*Battle.net*) present_terminal omarchy-install-battlenet ;;
*GeForce*) present_terminal omarchy-install-geforce-now ;;
*Xbox*) present_terminal omarchy-install-xbox-controllers ;;
*Battle.net*) present_terminal omarchy-install-gaming-battlenet ;;
*GeForce*) present_terminal omarchy-install-gaming-geforce-now ;;
*Xbox*) present_terminal omarchy-install-gaming-xbox-controllers ;;
*) show_install_menu ;;
esac
}