1
0
mirror of https://github.com/tiyn/wiki.git synced 2025-04-19 22:17:45 +02:00

Compare commits

..

3 Commits

Author SHA1 Message Date
d29141ddea x window system: corrected screen blanking 2023-10-26 03:53:44 +02:00
49006debee x window system: refined screen blanking 2023-10-26 03:14:24 +02:00
f975518996 firefox: update addon links 2023-10-25 23:09:54 +02:00
2 changed files with 30 additions and 14 deletions

View File

@ -26,23 +26,23 @@ The following add-ons increase the security or privacy.
- [Cameleon](https://addons.mozilla.org/en-GB/firefox/addon/chameleon-ext/) - [Cameleon](https://addons.mozilla.org/en-GB/firefox/addon/chameleon-ext/)
spoofs your browser profile including user agent and screen size. spoofs your browser profile including user agent and screen size.
- [ClearURLs](https://addons.mozilla.org/en-GB/Firefox/addon/clearurls) removes - [ClearURLs](https://addons.mozilla.org/en-GB/firefox/addon/clearurls) removes
tracking elements from URLs. tracking elements from URLs.
- [Firefox Multi-Account Containers](https://addons.mozilla.org/en-GB/Firefox/addon/multi-account-containers) - [Consent-O-Matic](https://addons.mozilla.org/en-GB/firefox/addon/consent-o-matic)
automatically refuses GDPR consent to a bunch of platforms.
- [Firefox Multi-Account Containers](https://addons.mozilla.org/en-GB/firefox/addon/multi-account-containers)
lets you separate cookies in different containers on a per site base. lets you separate cookies in different containers on a per site base.
With this add-on a proxy can be selected for each container which enables With this add-on a proxy can be selected for each container which enables
usage of a [VPN](/wiki/vpn.md) that acts as a Proxy like a usage of a [VPN](/wiki/vpn.md) that acts as a Proxy like a
[OpenVPN Proxy](/wiki/openvpn.md#proxy). [OpenVPN Proxy](/wiki/openvpn.md#proxy).
- [Temporary Containers](https://addons.mozilla.org/en-GB/Firefox/addon/temporary-containers) - [Temporary Containers](https://addons.mozilla.org/en-GB/firefox/addon/temporary-containers)
opens tabs and websites, that are not already managed by opens tabs and websites, that are not already managed by
`Firefox Multi-Account Containers` in a new container. `Firefox Multi-Account Containers` in a new container.
- [Never-Consent](https://addons.mozilla.org/en-GB/Firefox/addon/never-consent) - [NoScript](https://addons.mozilla.org/en-GB/firefox/addon/noscript) blocks all
automatically refuses GDPR consent to a bunch of platforms.
- [NoScript](https://addons.mozilla.org/en-GB/Firefox/addon/noscript) blocks all
javascript so that the parts you need can be reenabled and the rest is not used. javascript so that the parts you need can be reenabled and the rest is not used.
- [Privacy Badger](https://addons.mozilla.org/en-GB/Firefox/addon/privacy-badger17) - [Privacy Badger](https://addons.mozilla.org/en-GB/firefox/addon/privacy-badger17)
blocks unwanted invisible trackers. blocks unwanted invisible trackers.
- [Privacy Redirect](https://addons.mozilla.org/en-US/Firefox/addon/privacy-redirect/) - [Privacy Redirect](https://addons.mozilla.org/en-US/firefox/addon/privacy-redirect/)
redirects youtube, instagram, twitter, etc to free alternatives or alternative redirects youtube, instagram, twitter, etc to free alternatives or alternative
frontends. frontends.
- [SponsorBlock](/wiki/youtube.md#automatically-skip-sponsorships) skips YouTube video sponsors - [SponsorBlock](/wiki/youtube.md#automatically-skip-sponsorships) skips YouTube video sponsors
@ -53,9 +53,9 @@ The following add-ons increase the security or privacy.
- [Exclude pages from](http://www.jeffersonscher.com/gm/google-hit-hider/) - [Exclude pages from](http://www.jeffersonscher.com/gm/google-hit-hider/)
[search results](/wiki/search_engine.md) [search results](/wiki/search_engine.md)
- [Auto close YouTube ads](https://greasyfork.org/en/scripts/9165-auto-close-youtube-ads) - [Auto close YouTube ads](https://greasyfork.org/en/scripts/9165-auto-close-youtube-ads)
- [uBlock Origin](https://addons.mozilla.org/en-GB/Firefox/addon/ublock-origin) - [uBlock Origin](https://addons.mozilla.org/en-GB/firefox/addon/ublock-origin)
blocks unwanted content like ads. blocks unwanted content like ads.
- [User-Agent Switcher and Manager](https://addons.mozilla.org/en-GB/Firefox/addon/user-agent-string-switcher) - [User-Agent Switcher and Manager](https://addons.mozilla.org/en-GB/firefox/addon/user-agent-string-switcher)
spoofs websites that try to gather information about your webbrowser. spoofs websites that try to gather information about your webbrowser.
#### Style Add-ons #### Style Add-ons

View File

@ -58,15 +58,31 @@ Additionally to the guides in this section that are independent of the used
graphics unit special configuration for [Nvidia](/wiki/linux/nvidia.md) graphics unit special configuration for [Nvidia](/wiki/linux/nvidia.md)
and [Intel](./intel.md) can be found in their respective entries in this wiki. and [Intel](./intel.md) can be found in their respective entries in this wiki.
##### Screen Blanking ##### Turning Off the Screen
To save power the screen is set to turn black after a given amount of time. To save power the screen is set to turn black after a given amount of time.
This can be disabled temporarily by running `xset s off` or permanently by Adding the following lines to your `/etc/X11/xorg.conf.d/dpms.conf` will permanently enable screen
adding the following lines to your `/etc/X11/xorg.conf`: blanking.
Configure the times of the following section (both `10` minutes at the moment) and add it to the
`ServerFlags` option of the file `/etc/X11/xorg.conf.d/dpms.conf` or alternatively add them into the
file `/etc/X11/xorg.conf`.
Set the time to `0` for disabling the turning off of the screen.
```txt ```txt
Section "ServerFlags" Section "ServerFlags"
Option "BlankTime" "0" Option "OffTime" "10"
EndSection
```
This can be disabled temporarily by running `xset s off`.
The screen can also be turned off instantly with the command `xset dpms force off`.
If `OffTime` does not work add the following to the file `/etc/X11/xorg.conf.d/dpms.conf.
```txt
Section "ServerFlags"
Option "BlankTime" "10"
EndSection EndSection
``` ```