While you're here, please consider supporting GamingOnLinux on:
Reward Tiers:
Patreon. Plain Donations:
PayPal.
This ensures all of our main content remains totally free for everyone! Patreon supporters can also remove all adverts and sponsors! Supporting us helps bring good, fresh content. Without your continued support, we simply could not continue!
You can find even more ways to support us on this dedicated page any time. If you already are, thank you!
Reward Tiers:
This ensures all of our main content remains totally free for everyone! Patreon supporters can also remove all adverts and sponsors! Supporting us helps bring good, fresh content. Without your continued support, we simply could not continue!
You can find even more ways to support us on this dedicated page any time. If you already are, thank you!
Login / Register
- Kerbal Space Program spiritual successor Kitten Space Agency now has a Linux version
- NVIDIA hiring Linux driver engineers to help with Vulkan, Proton and more
- Happy four years to the Steam Deck - still the top PC gaming handheld
- Discord delay global rollout of age verification to improve transparency and add more options
- Steam Next Fest - February 2026 is live with tons of demos
- > See more over 30 days here
- steam overlay performance monitor - issues
- Xpander - Nacon under financial troubles... no new WRC game (?)
- Xpander - Establishing root of ownership for Steam account
- Nonjuffo - Total Noob general questions about gaming and squeezing every oun…
- GustyGhost - Looking for Linux MMORPG sandbox players (Open Source–friendly …
- Jarmer - See more posts
How to setup OpenMW for modern Morrowind on Linux / SteamOS and Steam Deck
How to install Hollow Knight: Silksong mods on Linux, SteamOS and Steam Deck
They've recently released a new version for it, with subtle enhancements that are explained in detail in the readme:
https://github.com/furious-programming/Fairtris-2-UC
(The first version of the game has been taken down for some reason, but a fork can still be found here, with patches that make building a Linux native binary more convenient: https://github.com/chronoscz/Fairtris)
To build it you need to install the FreePascal IDE called 'Lazarus' -- it's on the official repos of pretty much every mainstream distro: https://repology.org/project/lazarus/versions
A very minor patch needs to be applied to make the Linux build work properly -- & it's possible to apply the same change via the Lazarus GUI (the cog/wrench icon next to the play button; 'Config and Target' heading; 'Target OS' tab):
diff --git a/source/Fairtris.Main.lpi b/source/Fairtris.Main.lpi
index 4739517..28915b5 100644
--- a/source/Fairtris.Main.lpi
+++ b/source/Fairtris.Main.lpi
@@ -45,6 +45,8 @@
</SearchPaths>
<CodeGeneration>
<SmartLinkUnit Value="True"/>
+ <TargetCPU Value="x86_64"/>
+ <TargetOS Value="linux"/>
<Optimizations>
<OptimizationLevel Value="3"/>
</Optimizations>
@@ -55,11 +57,6 @@
<RunWithoutDebug Value="True"/>
</Debugging>
<LinkSmart Value="True"/>
- <Options>
- <Win32>
- <GraphicApplication Value="True"/>
- </Win32>
- </Options>
</Linking>
<Other>
<WriteFPCLogo Value="False"/>
AFAICT the only runtime requirement is SDL2; the FreePascal bindings are all included in the game repo.
Unfortunately the 2nd version of the game launches only on X11. The first launches fine on XWayland too.
Last edited by walther von stolzing on 26 Apr 2024 at 8:20 pm UTC
Your first Linux port? :grin:
I only made a quick test with Weston, but it seems to run fine here, both in Xwayland and natively in Weston.
So it might be a Plasma 6 / Wayland problem.
-- EDIT: It runs fine on Sway, but not labwc; both wlroots compositors w/ the default Fedora configurations. Weird.
Last edited by walther von stolzing on 27 Apr 2024 at 12:04 am UTC