-
|
I wanted to play around with the built-in themes, so I cloned the flow-themes repo, with the intention of building my own custom Now that may be an issue to file in the flow-themes repo, but I did not want to create an XY problem, hence asking here: Am I going about this the right/wrong way? If Thanks! |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments
-
|
Yes, If you can't get flow-themes to build you are probably not using the correct version of zig. Check the version stored in If it still doesn't build please open an issue in the flow-themes repo. |
Beta Was this translation helpful? Give feedback.
-
|
For future reference I'll mention the solution to flow-themes#1 here. To build flow-themes you need to have |
Beta Was this translation helpful? Give feedback.
Yes,
zig buildin flow-themes should just work. This will produce a zig module inzig-outthat can then be referenced in flow. You can use your local build of flow-themes by changing the.urlline in flow'sbuild.zig.zonto.path = "{flow-themes-path}/zig-out"and remove the.hashline.If you can't get flow-themes to build you are probably not using the correct version of zig. Check the version stored in
build.zig.versionand make sure it matches your zig version. Or use the./zigwrapper script to automatically fetch the correct version and build.If it still doesn't build please open an issue in the flow-themes repo.