From: Alberto G. <be...@ig...> - 2024-10-25 09:03:37
|
On Thu, Oct 24, 2024 at 12:51:53PM +0100, Adam Ainsworth wrote: > would it be possible to allow multiple 'profiles' by being able to > select the config file via a command line switch? I agree that it would be nice to have a better way to select the location of the configuration file. It could be as simple as a flag (--configfile ~/.fuserc-48k) or an environment variable (FUSE_EMULATOR_CONFIG_FILE=$HOME/.fuserc-48k). Related bug report: https://sourceforge.net/p/fuse-emulator/patches/443/ > It would be nice to be able to quickly choose whether you want (for > instance) a standard 48 set up (ie. for Microdrives), standard 128 > for daily use, +3e for disk manipulation or Pentagon for watching > demos. > > I realise I can do some file jiggery-pokery by replacing .fuserc but > having it native would be awesome You can also do that without having to replace .fuserc if you use a separate launcher script or shell alias / function. For example I have this in ~/.bashrc: fuse-slowtape () { fuse --no-detect-loader --no-auto-load --no-traps \ --no-fastload --no-accelerate-loader "$@" } Berto |