wrapper-manager
wrapper-manager copied to clipboard
Mounts
Run the program under bwrap and expose mount options
Usecase: expose ~/.config/mozilla to firefox as ~/.mozilla
This would be great for me to configure vscode or firefox, good luck!
One of my takeaways after having learnt namespaces after writing https://github.com/viperML/hover-rs :
- You need to unshare the user namespace to use any other namespace
- After unsharing the user namespace, you lose information about all other users and groups. This means all users and groups except the own, will show up as u16::max, 65535 (nouser)
- The previous point may or may not have implications in the proper behaviour of the wrapped app
- I could try to adapt hover-rs to be used by wrapper-manager, or write a thing from scratch