Closed bobby285271 closed 8 months ago
This fixes a NixOS specific issue.
On NixOS, packages are immutable so the wayfire.ini file would have 0444 mode when copied. As a result, further modifications won't work.
Doing an extra chmod u+w to workaround the issue.
chmod u+w
Doesn't cause any problems here on Debian on a test run using my "test" user with an initially empty home directory. Will merge, thanks.
This fixes a NixOS specific issue.
On NixOS, packages are immutable so the wayfire.ini file would have 0444 mode when copied. As a result, further modifications won't work.
Doing an extra
chmod u+w
to workaround the issue.