Edmund Laugasson
My feedback
46 results found
-
280 votes
Edmund Laugasson
supported this idea
·
-
789 votes
Edmund Laugasson
supported this idea
·
-
345 votes
Edmund Laugasson
supported this idea
·
-
765 votes
Edmund Laugasson
supported this idea
·
-
665 votes
Edmund Laugasson
supported this idea
·
-
2 votes
Edmund Laugasson
shared this idea
·
-
2 votes
An error occurred while saving the comment An error occurred while saving the comment
Edmund Laugasson
commented
Close Proton Pass, also from system tray
To turn off spelling:
```bash
python - <<'PY'
import json
from pathlib import Pathp = Path.home() / ".config/Proton Pass/Partitions/app/Preferences"
data = json.loads(p.read_text())
data.setdefault("browser", {})
data["browser"]["enable_spellchecking"] = Falsep.write_text(json.dumps(data, separators=(",", ":")))
PY
```After that you may check:
```bash
cat ~/.config/"Proton Pass"/Partitions/app/Preferences
```You will see something like:
```json
{"browser":{"enable_spellchecking":false},"migrated_user_scripts_toggle":true,"spellcheck":{"dictionaries":["et","en-GB","en-US"],"dictionary":"","use_spelling_service":false}}
```Whenever you need turn spelling back on:
```json
"enable_spellchecking":true
```You can check results, after changing settings:
```bash
grep -o '"browser"[^}]*}' \
~/.config/"Proton Pass"/Partitions/app/Preferences
```... you suppose to see e.g. when turned off:
```json
"browser":{"enable_spellchecking":false}
```Now are red lines gone and speller turned off. For now manually, hopefully in future there will be also appropriate options in GUI of Proton Pass
An error occurred while saving the comment
Edmund Laugasson
commented
I found and verified a working Linux workaround.
Installed appropriate dictionaries:
```bash
yay -Sy hunspell-et --needed
sudo pacman -Sy hunspell-en_gb hunspell-en_us hyphen-en --needed
```Proton Pass Desktop stores its Electron spell-checker configuration in:
`~/.config/Proton Pass/Partitions/app/Preferences`
By default, my configuration contained only:
```json
"spellcheck":{"dictionaries":["et"],"dictionary":""}
```After changing it to:
```json
"spellcheck":{"dictionaries":["et","en-GB","en-US"],"dictionary":""}
```and restarting Proton Pass, multilingual spell checking started working correctly.
Proton Pass then automatically downloaded the corresponding Electron/Chromium dictionaries:
```text
~/.config/Proton Pass/Dictionaries/et-EE-3-0.bdic
~/.config/Proton Pass/Dictionaries/en-GB-10-1.bdic
~/.config/Proton Pass/Dictionaries/en-US-10-1.bdic
```The setting also persists after restarting Proton Pass.
This confirms that Proton Pass already supports multiple spell-check languages internally through Electron. What is missing is a user-facing setting to manage these languages and to disable spell checking when desired.
Steps to change manually for now:
```bash
# ensure all Proton Pass processes are closed:
pgrep -af proton-pass# just in case backup current settings:
cp ~/.config/"Proton Pass"/Partitions/app/Preferences \
~/.config/"Proton Pass"/Partitions/app/Preferences.bak# then change language:
python - <<'PY'
import json
from pathlib import Pathp = Path.home() / ".config/Proton Pass/Partitions/app/Preferences"
data = json.loads(p.read_text())
data.setdefault("spellcheck", {})
data["spellcheck"]["dictionaries"] = ["et", "en-GB", "en-US"]
data["spellcheck"]["dictionary"] = ""p.write_text(json.dumps(data, separators=(",", ":")))
PY# then start Proton Pass and check:
grep -o '"spellcheck"[^}]*}' \
~/.config/"Proton Pass"/Partitions/app/Preferences# suppose to see output:
"spellcheck":{"dictionaries":["et","en-GB","en-US"],"dictionary":""}# you can also check:
find ~/.config/"Proton Pass" -type f \
\( -iname '*.bdic' -o -path '*/Dictionaries/*' \) \
-print# usually output:
~/.config/Proton Pass/Dictionaries/en-GB-10-1.bdic
~/.config/Proton Pass/Dictionaries/et-EE-3-0.bdic
~/.config/Proton Pass/Dictionaries/en-US-10-1.bdic
```
Edmund Laugasson
shared this idea
·
-
76 votes
An error occurred while saving the comment
Edmund Laugasson
commented
Same applies also other Linux apps by Proton - Pass, Authenticator, VPN, Mail, Drive, Calendar, etc. - https://protonapps.com/ Flatpak allows also automate packages updating, also manage centrally, use on different Linux distributions. AppImage could be, but is more problematic to manage centrally, also to integrate with desktop.
Edmund Laugasson
supported this idea
·
-
2 votes
Edmund Laugasson
shared this idea
·
-
13 votes
Edmund Laugasson
supported this idea
·
-
51 votes
Edmund Laugasson
supported this idea
·
An error occurred while saving the comment
Edmund Laugasson
commented
I've seen platform specific requests, but switching dark/light mode or use device default mode would be appreciated regardless of used platform. E.g. in Firefox extension the dark mode does not work at all currently. Therefore there would be expected to configure dark/light/device default mode inside Proton Pass.
-
678 votes
An error occurred while saving the comment
Edmund Laugasson
commented
To be honest, this is appreciated also in other platforms, like Linux, macOS.
-
1,120 votes
Edmund Laugasson
supported this idea
·
-
136 votes
Edmund Laugasson
supported this idea
·
-
71 votes
Edmund Laugasson
supported this idea
·
-
140 votes
Edmund Laugasson
supported this idea
·
-
1,906 votes
Edmund Laugasson
supported this idea
·
-
125 votes
Edmund Laugasson
supported this idea
·
-
130 votes
Edmund Laugasson
supported this idea
·
-
101 votes
Edmund Laugasson
supported this idea
·
Used Markdown syntax, unfortunately here comments do not respect it. You can copy Markdown code and paste it into plain text editor, e.g. search https://duckduckgo.com/?q=plain+text+editor - there are also online plain text editors available. Then in turn copy from plain text editor that Markdown code and paste it e.g. into LibreOffice Writer and you will see formatted output. Problem is, that when copying Markdown code here from web browser directly, then it comes as HTML and not Markdown. Even you use CTRL+SHIFT+V e.g. in LibreOffice Writer to paste without formatting, you will still get Markdown code and not formatted output.
Also this is possible to store plain text file with Markdown code as *.md and then open that file with LibreOffice Writer, also Okular (KDE document viewer), etc app, that can show Markdown. E.g. in Android there is good text editor Markor, that is capable to show Markdown rendered output. Markor can be found in F-droid https://f-droid.org/en/packages/net.gsantner.markor/