Demonstration Videos:
- 2-X All The Times
- 7-X Miracle Defibrillator (outdated video)
Other tools: QRhythmCafe - Download Rhythm Doctor levels
Important
You can either choose from these versions:
The native Linux version works with BepInEx 5. BepInEx is a mod loader for games. If you do not want to use BepInEx, use the Proton version.
-
You'll need BepInEx 5 installed. If you do not have it, follow the install guide, then also follow the Steam guide.
-
Download the latest release ZIP and extract it to the root of the game.
libQt6#######.so.6files should be in the same folder asUnityPlayer.soandrun_bepinex.sh. -
In the Steam compatibility settings, do not force the runtime.
-
Set Steam launch options:
- KDE Plasma (and rest):
./run_bepinex.sh %command% - Hyprland:
PRESSURE_VESSEL_FILESYSTEMS_RW=/run/user/1000/hypr ./run_bepinex.sh %command%
- KDE Plasma (and rest):
-
Open the game, go to the settings and select the window dance option in the accessibility tab. Have fun!
If you found this plugin useful or cool, consider starring the GitHub repo!
This is the version when you have "Proton Experimental" selected in the compatibility list. The game would not run on Proton, but only through regular Wine which will be explained later.
To build, you need these packages:
# Debian/Ubuntu based (if on Wine Staging, replace "libwine-dev" with wine-staging-dev)
sudo apt install libwine-dev pkg-config qt6-base-dev libxcb1-dev git
# Arch
sudo pacman -S --needed wine-staging pkgconf qt6-base libxcb gitClone this project:
git clone https://github.com/chocolateimage/rd-multiwindow-linux.git
cd rd-multiwindow-linuxNote
Note that you can no longer play the game from Steam itself after installing, you need to run the command below to run the game. To revert the change, go to the properties window, select the "Installed Files" tab, then click on "Verify Integrity of game files".
To patch the game:
./build.sh "/path/to/steamapps/common/Rhythm Doctor"Steam's Proton doesn't work (at least not for me), so you have to manually run Wine, and in some cases in a different Wine Prefix to fix graphical issues:
cd "/path/to/steamapps/common/Rhythm Doctor"
WINEPREFIX="$HOME/.winerd" wine "Rhythm Doctor.exe"If you found this plugin useful or cool, consider starring the GitHub repo!
Before reporting an issue, follow these troubleshooting steps for the native version:
- Try the latest release of the plugin. Override any files if it asks to.
- If there is an option for window dance in the settings, select the opton and read what it says on the right.
- In
Rhythm Doctor/BepInEx/config/BepInEx.cfg, enable[Logging.Console]'sEnabled = trueand enable[Chainloader]'sHideManagerGameObject = true.
And these troubleshooting steps if only you are using the Wine version:
- Pull and rebuild the latest changes (
git pulland./build.sh ...) - Try the latest Wine Staging release. If using a non-rolling distro, use one from WineHQ.
What to include in your report:
- Put the distro you are using and desktop environment in your issue report.
- Make sure to launch the game in the terminal. Provide the logs (not Player.log, but you can provide that too if you want) in a new GitHub issue.
- If using the Wayland version, make sure to open
journalctl -efbefore launching the game, then provide the logs from there too. - A screen recording can help me see the problem.
Note
This section is only if you want to edit the code, not if you want to run it.
You need some things installed:
- .NET SDK for BepInEx. Arch:
dotnet-sdkFedora:dotnet-sdk-10.0 - Build packages: Arch:
pkgconf qt6-base libxcbFedora:qt6-qtbase-devel glew-devel - The VS Code extensions clangd and C# Dev Kit
- Docker (optional, only if you want to build Steam-sandbox-compatible files)
To build the BepInEx plugin itself (the .dll):
cd LinuxWindowDancePlugin
# You will need to have Rhythm Doctor installed in Steam for this to work
dotnet buildThe DLL will be at LinuxWindowDancePlugin/bin/Debug/netstandard2.1/LinuxWindowDancePlugin.dll. You can symlink your plugin in the game folder to that newly built DLL.
Then if you want to build the Linux .so file:
./build.sh "/path/to/steamapps/common/Rhythm Doctor"If you want to build a version that works inside the Steam Sniper sandbox, you will need Docker (or any compatible software, like Podman).
# Download image and compile Qt6
./steam_sniper/prepare.sh
# Create the Steam Runtime Sniper ZIP file
./steam_sniper/build.shYou can then extract the ZIP file on top of your game directory.
