1
0
Fork 0
dotfiles/tweaks.org
2023-04-26 11:38:20 +02:00

25 lines
1.1 KiB
Org Mode

* Firefox about:config
#+BEGIN_EXAMPLE
$fierfox-profile/user.js
user_pref("privacy.donottrackheader.enabled", "true" ); // Send Do-not-track
user_pref("findbar.highlightAll", "true" ); // Highlight all partial results in search
user_pref("browser.sessionstore.max_resumed_crashes", "-1" ); // Do not show "Upps, we could not recover"
user_pref("browser.fixup.fallback-to-https", "false"); // Do not try https after http failed
user_pref("extensions.pocket.enabled", "false"); // Disable Pocket
#+END_EXAMPLE
* MS Teams: Black box instead of screensharing with i3wm
https://docs.microsoft.com/en-us/answers/questions/42095/sharing-screen-not-working-anymore-bug.html#answer-42165
#+BEGIN_EXAMPLE
sudo mv /usr/share/teams/resources/app.asar.unpacked/node_modules/slimcore/bin/rect-overlay \
/usr/share/teams/resources/app.asar.unpacked/node_modules/slimcore/bin/rect-overlay.borked
#+END_EXAMPLE
* Filemanager: Folders before files
#+BEGIN_EXAMPLE
gsettings set org.gtk.Settings.FileChooser sort-directories-first true
#+END_EXAMPLE