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

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

This commit is contained in:
tiyn 2021-07-03 16:14:10 +00:00
parent 15193388f0
commit b31eb28e19
2 changed files with 23 additions and 1 deletions

9
wiki/linux/voicechat.md Normal file
View File

@ -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.

View File

@ -21,4 +21,17 @@ Section "Device"
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
```