linux: x11 added screen blanking notice | voicechat added noise cancellation

master
tiyn 3 years ago
parent 15193388f0
commit b31eb28e19

@ -0,0 +1,9 @@
# Voicechat
There is various software to use to chat with other persons.
## Noise cancellation
Noise cancellation can be achieved by installing
[Noisetorch](https://github.com/lawl/NoiseTorch).
After the installation modify the `Voice Activation Threshhold` to your needs.

@ -21,4 +21,17 @@ Section "Device"
EndSection EndSection
``` ```
This was found on [maketecheasier](https://www.maketecheasier.com/get-rid-screen-tearing-linux). This was found on
[maketecheasier](https://www.maketecheasier.com/get-rid-screen-tearing-linux).
## Disable Screen Blanking
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`:
```txt
Section "ServerFlags"
Option "BlankTime" "0"
EndSection
```

Loading…
Cancel
Save