From 2730308da8858f8563523f833c4047dfa2145a2f Mon Sep 17 00:00:00 2001 From: AlexBocken Date: Thu, 5 May 2022 15:20:38 +0200 Subject: [PATCH 1/2] add spellcheck instructions to qutebrowser --- docs/qutebrowser.md | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/docs/qutebrowser.md b/docs/qutebrowser.md index 57b2951..1fdf2ba 100644 --- a/docs/qutebrowser.md +++ b/docs/qutebrowser.md @@ -20,6 +20,15 @@ qutebrowser --nowindow ':adblock-update;;later 10000 download-clear' ``` will update the adblock lists without starting a qutebrowser window. +## Setting spellcheck languages +This is a bit more involved since it requires a script that can only be found in the source code of qutebrowser. +1. Download the qutebrowser source code: `git clone https://github.com/qutebrowser/qutebrowser` +2. `cd qutebrowser` +3. Install the wanted languages e.g. `python -m scripts.dictcli install en-GB` +4. set spellcheck to the wanted languages in qutebrowser. + Qutebrowser can also use multiple languages by parsing a list: + `:set spellcheck.languages '["en-GB", "de-DE"]'` + ## Greasemonkey scripts To add scripts such as 4chanX to qutebrowser add the Js file to `${XDG_DATA_HOME:-$HOME/.local/share}/qutebrowser/greasemonkey`. From bd1e99e1542f129ebdbebf6c4703a212d2d1b806 Mon Sep 17 00:00:00 2001 From: AlexBocken Date: Tue, 24 May 2022 11:25:49 +0200 Subject: [PATCH 2/2] update matlab instructions for R2022a --- docs/matlab.md | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/docs/matlab.md b/docs/matlab.md index 18eccb3..5ad8497 100644 --- a/docs/matlab.md +++ b/docs/matlab.md @@ -36,6 +36,11 @@ Move the matlab.tar to the repository. Adjust the `pkgver` and `release` vars in the `PKGBUILD` to reflect current release. Run `makepkg -si` to install. +### mv cannot stat error +In the case of an error in the form of: +`mv: cannot stat 'dependency_links.txt'$'\n''PKG-INFO'$'\n''SOURCES.txt'$'\n''top_level.txt': No such file or directory` +Edit line 207 of the `PKGBUILD` to include `ls -d` instead of just `ls`. + ## Configuration ### fix graphics driver with intel @@ -53,3 +58,6 @@ s = settings;s.matlab.desktop.DisplayScaleFactor s.matlab.desktop.DisplayScaleFactor.PersonalValue = 2 ``` This value can be a float. + +### Fonts malformed +Set Aliasing to true under `Preferences->MATLAB->Fonts` and reboot.