We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
My mutt configuration is structured as follows:
.mutt/ ├── accounts/ ├── aliases ├── muttrc ├── sort-date.rc ├── sort-threads.rc └── themes/
And I would like provide read-only access to this. Would it be possible to provide this for this snap by using https://snapcraft.io/docs/personal-files-interface?
I'm using 20.04 LTS, and Ubuntu does not provide a deb backport for mutt 2.0.
They I workaround the existing snap is that I just do this:
$ rmdir ~/snap/mutt/common && ln -s $HOME ~/snap/mutt/common
The text was updated successfully, but these errors were encountered:
Another workaround:
$ snap run --shell mutt $ HOME=<home directory> mutt
Sorry, something went wrong.
Also this works:
$ ln -s ~/.mutt /home/jarkko/snap/mutt/common/ $ ln -s ~/.mailcap ~/snap/mutt/common/
I'm just worried what happens when snap is removed. Does it remove just the symbolic link or recursively delete everything in ~/mutt?
~/mutt
Successfully merging a pull request may close this issue.
My mutt configuration is structured as follows:
And I would like provide read-only access to this. Would it be possible to provide this for this snap by using https://snapcraft.io/docs/personal-files-interface?
I'm using 20.04 LTS, and Ubuntu does not provide a deb backport for mutt 2.0.
They I workaround the existing snap is that I just do this:
The text was updated successfully, but these errors were encountered: