Search found 4 matches

by ogsIhdw
Wed Apr 03, 2024 2:15 pm
Forum: Assigned
Topic: [raiguard][1.1.103] Crash on startup under Wayland with fractional scaling
Replies: 7
Views: 818

Re: [raiguard][1.1.103] Crash on startup under Wayland with fractional scaling

A quick fix is to turn off fractional scaling (via swaymsg or what have you) then launch factorio, then re-enable scaling:

Code: Select all

swaymsg output eDP-1 scale 1
factorio &
sleep 5
swaymsg output eDP-1 scale 1.5
by ogsIhdw
Wed Sep 20, 2023 11:04 pm
Forum: Resolved Problems and Bugs
Topic: [raiguard][1.1.57] Tutorial files are read-only copied
Replies: 8
Views: 4410

Re: [1.1.57] Tutorial files are read-only copied

After poking around a bit, it seems that all that is needed to implement a fix is to add the following code in "Filesystem::copy_file": std::filesystem::copy_file(from, to, options); // Already there std::filesystem::permissions(to, std::filesystem::perms::owner_write, std::filesystem::per...
by ogsIhdw
Fri Aug 18, 2023 7:43 pm
Forum: Resolved Problems and Bugs
Topic: [raiguard][1.1.57] Tutorial files are read-only copied
Replies: 8
Views: 4410

Re: [1.1.57] Tutorial files are read-only copied

I still think that this should instead be fixed in Factorio: on *Nix systems, Factorio should copy, chmod, then modify the files instead of just copying and modifying.
by ogsIhdw
Fri Aug 18, 2023 5:48 pm
Forum: Resolved Problems and Bugs
Topic: [raiguard][1.1.57] Tutorial files are read-only copied
Replies: 8
Views: 4410

Re: [1.1.57] Tutorial files are read-only copied

I have a marginally better hacky workaround. This mounts a filesystem that does not follow Unix permissions (Fat32) and uses that for the temp directory. Remove the last three lines of code (the factorio command onwards) to make it a "one-time" thing. #!/usr/bin/env bash set -e FACTORIO_CO...

Go to advanced search