wrapper-manager icon indicating copy to clipboard operation
wrapper-manager copied to clipboard

Mounts

Open viperML opened this issue 2 years ago • 3 comments

Run the program under bwrap and expose mount options

viperML avatar Dec 11 '23 09:12 viperML

Usecase: expose ~/.config/mozilla to firefox as ~/.mozilla

viperML avatar Jan 05 '24 18:01 viperML

This would be great for me to configure vscode or firefox, good luck!

Henry-Hiles avatar Jan 05 '24 20:01 Henry-Hiles

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

viperML avatar Mar 30 '24 18:03 viperML