From 5b288f1e2824b4c9e852d47f3fe2edf8d942fd9c Mon Sep 17 00:00:00 2001 From: David Heinemeier Hansson Date: Mon, 4 May 2026 09:13:33 +0200 Subject: [PATCH] Group all gaming installers together --- ...tall-battlenet => omarchy-install-gaming-battlenet} | 2 +- ...-geforce-now => omarchy-install-gaming-geforce-now} | 0 ...tall-gpu-lib32 => omarchy-install-gaming-gpu-lib32} | 0 ...tall-retroarch => omarchy-install-gaming-retroarch} | 0 ...rchy-install-steam => omarchy-install-gaming-steam} | 2 +- ...rollers => omarchy-install-gaming-xbox-controllers} | 0 bin/omarchy-menu | 10 +++++----- 7 files changed, 7 insertions(+), 7 deletions(-) rename bin/{omarchy-install-battlenet => omarchy-install-gaming-battlenet} (95%) rename bin/{omarchy-install-geforce-now => omarchy-install-gaming-geforce-now} (100%) rename bin/{omarchy-install-gpu-lib32 => omarchy-install-gaming-gpu-lib32} (100%) rename bin/{omarchy-install-retroarch => omarchy-install-gaming-retroarch} (100%) rename bin/{omarchy-install-steam => omarchy-install-gaming-steam} (89%) rename bin/{omarchy-install-xbox-controllers => omarchy-install-gaming-xbox-controllers} (100%) diff --git a/bin/omarchy-install-battlenet b/bin/omarchy-install-gaming-battlenet similarity index 95% rename from bin/omarchy-install-battlenet rename to bin/omarchy-install-gaming-battlenet index fbf23033..7cc30f80 100755 --- a/bin/omarchy-install-battlenet +++ b/bin/omarchy-install-gaming-battlenet @@ -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. diff --git a/bin/omarchy-install-geforce-now b/bin/omarchy-install-gaming-geforce-now similarity index 100% rename from bin/omarchy-install-geforce-now rename to bin/omarchy-install-gaming-geforce-now diff --git a/bin/omarchy-install-gpu-lib32 b/bin/omarchy-install-gaming-gpu-lib32 similarity index 100% rename from bin/omarchy-install-gpu-lib32 rename to bin/omarchy-install-gaming-gpu-lib32 diff --git a/bin/omarchy-install-retroarch b/bin/omarchy-install-gaming-retroarch similarity index 100% rename from bin/omarchy-install-retroarch rename to bin/omarchy-install-gaming-retroarch diff --git a/bin/omarchy-install-steam b/bin/omarchy-install-gaming-steam similarity index 89% rename from bin/omarchy-install-steam rename to bin/omarchy-install-gaming-steam index 871e659d..e08b26f5 100755 --- a/bin/omarchy-install-steam +++ b/bin/omarchy-install-gaming-steam @@ -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..." diff --git a/bin/omarchy-install-xbox-controllers b/bin/omarchy-install-gaming-xbox-controllers similarity index 100% rename from bin/omarchy-install-xbox-controllers rename to bin/omarchy-install-gaming-xbox-controllers diff --git a/bin/omarchy-menu b/bin/omarchy-menu index 8f9867f8..bbde5c06 100755 --- a/bin/omarchy-menu +++ b/bin/omarchy-menu @@ -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 }