Install BizHawk and Archipelago
This commit is contained in:
@@ -0,0 +1,7 @@
|
||||
[Desktop Entry]
|
||||
Type=Application
|
||||
Name="Archipelago"
|
||||
GenericName="Archipelago"
|
||||
Exec=/opt/Archipelago/ArchipelagoLauncher
|
||||
Categories=Game;
|
||||
StartupNotify=false
|
||||
7
files/archipelago/usr/share/applications/bizhawk.desktop
Normal file
7
files/archipelago/usr/share/applications/bizhawk.desktop
Normal file
@@ -0,0 +1,7 @@
|
||||
[Desktop Entry]
|
||||
Type=Application
|
||||
Name="Bizhawk"
|
||||
GenericName="Bizhawk"
|
||||
Exec=/opt/BizHawk/EmuHawkMono.sh
|
||||
Categories=Game;
|
||||
StartupNotify=false
|
||||
11
files/scripts/install-archipelago.sh
Normal file
11
files/scripts/install-archipelago.sh
Normal file
@@ -0,0 +1,11 @@
|
||||
#!/usr/bin/env bash
|
||||
set -xeuo pipefail
|
||||
|
||||
version="0.6.4"
|
||||
name="Archipelago_${version}_linux-x86_64"
|
||||
tarball="${name}.tar.gz"
|
||||
curl -sSfL "https://github.com/ArchipelagoMW/Archipelago/releases/download/${version}/${tarball}" -o "/tmp/${tarball}"
|
||||
|
||||
tar xvf "/tmp/${tarball}" -C /opt/
|
||||
|
||||
rm -f "/tmp/${tarball}"
|
||||
12
files/scripts/install-bizhawk.sh
Normal file
12
files/scripts/install-bizhawk.sh
Normal file
@@ -0,0 +1,12 @@
|
||||
#!/usr/bin/env bash
|
||||
set -xeuo pipefail
|
||||
|
||||
version="2.10"
|
||||
name="BizHawk-${version}-linux-x64"
|
||||
tarball="${name}.tar.gz"
|
||||
curl -sSfL "https://github.com/TASEmulators/BizHawk/releases/download/${version}/${tarball}" -o "/tmp/${tarball}"
|
||||
|
||||
mkdir -p /opt/BizHawk/
|
||||
tar xvf "/tmp/${tarball}" -C /opt/BizHawk/
|
||||
|
||||
rm -f "/tmp/${tarball}"
|
||||
@@ -5,6 +5,8 @@ modules:
|
||||
files:
|
||||
- source: steam-firewall
|
||||
destination: /
|
||||
- source: archipelago
|
||||
destination: /
|
||||
- type: dnf
|
||||
repos:
|
||||
cleanup: true
|
||||
@@ -14,3 +16,7 @@ modules:
|
||||
- https://github.com/ebkr/r2modmanPlus/releases/download/v3.2.10/r2modman-3.2.10.x86_64.rpm
|
||||
- steam
|
||||
- mono-core
|
||||
- type: script
|
||||
scripts:
|
||||
- install-bizhawk.sh
|
||||
- install-archipelago.sh
|
||||
|
||||
@@ -3,12 +3,18 @@
|
||||
name: pg-desktop-nvidia
|
||||
|
||||
# Custom Base
|
||||
# base-image: registry.gitlab.com/wunker-bunker/wunker-os/kinoite-nvidia
|
||||
base-image: registry.gitlab.com/wunker-bunker/wunker-os/kinoite-nvidia
|
||||
image-version: 42
|
||||
description: The image of Wunker OS for PG's desktop gaming.
|
||||
modules:
|
||||
- from-file: common/common.yml
|
||||
- from-file: common/updates.yml
|
||||
- from-file: common/gaming.yml
|
||||
- from-file: common/ms-fonts.yml
|
||||
- from-file: common/gaming.yml
|
||||
- type: dnf
|
||||
install:
|
||||
packages:
|
||||
- https://dl.google.com/linux/direct/google-chrome-stable_current_x86_64.rpm
|
||||
- libadwaita
|
||||
- from-file: common/post-build.yml
|
||||
|
||||
Reference in New Issue
Block a user