Quote from: Guigui on November 10, 2025, 11:37:32 PMhow to "create a simlink to the other game's folder"
I assume: In CE's directory, you've already removed/moved away the subdirectories levels/, music/, replays/, and styles/.
I assume: Next to CE's directory, you have an extracted namida's NeoLemmix directory, and it's named nl. If it's named something else (not nl): In my commands below, replace all ../nl/ with the proper path to namida's NeoLemmix.
Open a terminal. Navigate into CE's directory (cd path/to/your/ce). Run:
ln -s ../nl/levels
ln -s ../nl/music
ln -s ../nl/replays
ln -s ../nl/styles
To verify: List the CE directory with ls. You should now see symlinks levels, music, replays, and styles next to your NeoLemmixCE.exe. Symlinks are special files, not regular files nor directories. You can ask about the nature of a file with the file command: file levels should tell you: levels: symbolic link to ../nl/levels.
If you ever remove NL because you prefer CE, you'll lose the pointed-to content. Before you remove NL, first, in CE, remove the symlinks (rm levels, rm styles, ...) and move the four NL subdirectories into CE.
-- Simon