Skip to content

Commit ff73ea2

Browse files
committed
update wine stuff
1 parent 50ab3e3 commit ff73ea2

File tree

2 files changed

+17
-1
lines changed

2 files changed

+17
-1
lines changed

.github/workflows/build.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ jobs:
5656
fail-fast: false
5757
matrix:
5858
app:
59-
- { name: wine, pkgs: dxvk-async-git mono vkd3d-proton-mingw-git wine-gecko wine-mono wine-staging-wow64 winetricks }
59+
- { name: wine, pkgs: dxvk-async-git mono vkd3d-proton-mingw-git wine-gecko wine-mono wine-staging winetricks }
6060
- { name: emus, pkgs: ares-emu-avx-git cemu citra-canary-git ryujinx suyu-dev-qt6-git }
6161
runs-on: ubuntu-latest
6262
container: archlinux:latest

appdwarf

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,16 @@ brun() {
2424
chmod +x "$1"
2525
}
2626

27+
urun() {
28+
outfunc apprun | sed '5s/ / umu-run /' > "$1"
29+
chmod +x "$1"
30+
}
31+
32+
wrun() {
33+
outfunc apprun | sed '5s/ / wine /;5s/)/).exe/' > "$1"
34+
chmod +x "$1"
35+
}
36+
2737
appa() { arun "$DIR"/AppRun; }
2838
appb() { brun "$DIR"/AppRun; }
2939

@@ -138,6 +148,12 @@ case "$1" in
138148
echo Built by July 🏳️‍🌈
139149
printf '\e[0m'
140150
exit ;;
151+
-u )
152+
urun "$2"
153+
exit ;;
154+
-w )
155+
wrun "$2"
156+
exit ;;
141157
-* | '' )
142158
echo "Usage: appdwarf [option] [APP/FILE/FOLDER/URL] [compression options]"
143159
echo " -a [FILE] write example AppRun file"

0 commit comments

Comments
 (0)