how do I use a custom wine header or edit the wine header it installed it?
Search Criteria
Package Details: osu 20240607-1
Package Actions
Git Clone URL: | https://aur.archlinux.org/osu.git (read-only, click to copy) |
---|---|
Package Base: | osu |
Description: | A free-to-win rhythm game |
Upstream URL: | https://osu.ppy.sh |
Keywords: | catch circle ctb game mania osu peppy ppy rhythm stable taiko |
Licenses: | custom |
Submitter: | ValdikSS |
Maintainer: | fossdd |
Last Packager: | fossdd |
Votes: | 64 |
Popularity: | 0.020967 |
First Submitted: | 2012-11-07 13:27 (UTC) |
Last Updated: | 2024-06-07 15:24 (UTC) |
Dependencies (7)
- lib32-gnutls
- lib32-gst-plugins-base-libs (lib32-gst-plugins-base-libs-gitAUR)
- lib32-libxcomposite
- wine (wine-valveAUR, wine-stable-nextAUR, wine-stableAUR, wine-wow64-gitAUR, wine-staging-wow64-gitAUR, wine-ge-customAUR, wine-gitAUR, wine-staging-gitAUR, wine-wow64AUR, wine-staging-wow64AUR, wine-tkg-staging-wow64-binAUR, wine-cachyosAUR, wine-staging)
- winetricks (winetricks-gitAUR)
- icoutils (make)
- pipewire-pulse (pipewire-pulse-gitAUR, pipewire-full-pulse-gitAUR) (optional) – low-latency audio backend
Required by (0)
Sources (5)
Latest Comments
« First ‹ Previous 1 2 3 4 5 6 7 .. 15 Next › Last »
revamp commented on 2021-10-06 01:00 (UTC)
revamp commented on 2021-09-21 16:37 (UTC)
Just got this error.
==> ERROR: One or more files did not pass the validity check! error: failed to download sources for 'osu-20210821-2': error: packages failed to buid: osu-20210821-2
psun256 commented on 2021-09-06 14:59 (UTC) (edited on 2021-09-06 14:59 (UTC) by psun256)
@amingirl I'm using one of gonX's wine builds for osu, seems to work fine. https://drive.google.com/drive/folders/17MVlyXixv7uS3JW4B-H8oS4qgLn7eBw5
It installs in /opt/wine-osu/ so I replaced export PATH="${HOME}/build/wine:${PATH}"
in huupoke's osu-stable file with export PATH="/opt/wine-osu/bin:${PATH}"
Here is mine:
export vblank_mode=0
export PATH="/opt/wine-osu/bin:${PATH}"
export OSU_STABLE_DATA_DIRECTORY="${HOME}/osuStableDir"
setsid osu-stable "$@" &
huupoke12 commented on 2021-08-12 08:56 (UTC)
@That1Calculator It doesn't happen for me. Are you using a custom Wine build? If that's the case, you might want to try the vanilla Wine.
That1Calculator commented on 2021-08-12 03:09 (UTC)
This just happened after the latest update -- no matter what I do, I get this error:
X Error of failed request: BadValue (integer parameter out of range for operation)
Major opcode of failed request: 151 (GLX)
Minor opcode of failed request: 3 (X_GLXCreateContext)
Value in failed request: 0x0
Serial number of failed request: 423
Current serial number in output stream: 424
Please help!
huupoke12 commented on 2021-08-10 14:35 (UTC)
@Ketchup901 I have updated the hash. Seems like peppy posted the changelog before pushing the new build.
Ketchup901 commented on 2021-08-10 12:30 (UTC)
osu-installer-20210809.1.exe
fails validity check
huupoke12 commented on 2021-06-09 03:04 (UTC) (edited on 2022-03-31 13:24 (UTC) by huupoke12)
@amingirl If you want to use a custom Wine build, you can just prepend the PATH environment variable with the custom Wine's path.
But I have written this script with the idea of not to directly edit /usr/bin/osu-stable
, but to create your own script if you want to override any of the value.
This is my ~/bin/osu-stable
file (/usr/bin/osu-stable
is unmodified, and ~/bin
is added to my PATH
)
#!/bin/sh
export PATH="${HOME}/build/wine:${PATH}"
export OSU_STABLE_DATA_DIRECTORY="${HOME}/osuStableDir"
/usr/bin/osu-stable "$@"
<deleted-account> commented on 2021-06-08 21:15 (UTC)
Is there an easy way to use custom wine? Right now I am editing /usr/bin/osu-stable
to replace wine
with /opt/wine-osu/bin/wine
, but could you make it an environment variable or something?
yinux commented on 2021-06-05 22:08 (UTC)
@forestmemories me too cpu load heavy, when i run stable on windows it is not nearly as much
Pinned Comments
huupoke12 commented on 2021-06-09 03:04 (UTC) (edited on 2022-03-31 13:24 (UTC) by huupoke12)
@amingirl If you want to use a custom Wine build, you can just prepend the PATH environment variable with the custom Wine's path.
But I have written this script with the idea of not to directly edit
/usr/bin/osu-stable
, but to create your own script if you want to override any of the value.This is my
~/bin/osu-stable
file (/usr/bin/osu-stable
is unmodified, and~/bin
is added to myPATH
)