This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 28 module(s) loaded. | |
| index: 0 | |
| name: <module-device-restore> | |
| argument: <> | |
| used: -1 | |
| load once: yes | |
| properties: | |
| module.author = "Lennart Poettering" | |
| module.description = "Automatically restore the volume/mute state of devices" | |
| module.version = "11.1" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Módulo #0 | |
| Nombre: module-device-restore | |
| Argumento: | |
| Contador de uso: n/a | |
| Propiedades: | |
| module.author = "Lennart Poettering" | |
| module.description = "Automatically restore the volume/mute state of devices" | |
| module.version = "11.1" | |
| Módulo #1 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Fontconfig warning: line 5: unknown element "its:rules" | |
| Fontconfig warning: line 6: unknown element "its:translateRule" | |
| Fontconfig error: line 6: invalid attribute 'translate' | |
| Fontconfig error: line 6: invalid attribute 'selector' | |
| Fontconfig error: line 7: invalid attribute 'xmlns:its' | |
| Fontconfig error: line 7: invalid attribute 'version' | |
| Fontconfig warning: line 9: unknown element "description" | |
| Fontconfig warning: "/etc/fonts/conf.d/10-hinting-slight.conf", line 4: unknown element "its:rules" | |
| Fontconfig warning: "/etc/fonts/conf.d/10-hinting-slight.conf", line 5: unknown element "its:translateRule" | |
| Fontconfig error: "/etc/fonts/conf.d/10-hinting-slight.conf", line 5: invalid attribute 'translate' |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <!--- Look here https://www.taniarascia.com/basic-html5-file/ ---> | |
| <!doctype html> | |
| <html lang="en"> | |
| <head> | |
| <meta charset="utf-8"> | |
| <meta http-equiv="x-ua-compatible" content="ie=edge"> | |
| <meta name="viewport" content="width=device-width, initial-scale=1"> | |
| <title></title> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # install those packages firs | |
| # apt install cmake git dpkg-dev make g++ gcc gfortran binutils libx11-dev libxpm-dev libxft-dev libgif-dev graphviz-dev python3-dev python3-pip libxml2-dev libssl-dev libmysql++-dev libcfitsio-dev libtbb-dev | |
| # It is adviced to have installed GSL, FFTW and OpenBLAS. | |
| # They can be compiled from source for better performance or installed via apt with, | |
| # apt install libgsl-dev libfftw3-dev libopenblas-dev | |
| # and optionally install R | |
| # apt install r-base r-base-dev |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # Install pulseaudio-equalizer | |
| # SYSTEM WIDE: add the equalizer section and optionally the default sink to /etc/pulse/default.pa | |
| # USER: just create ~/.config/pulse/default.pa with the contents below | |
| .include /etc/pulse/default.pa | |
| ## Equalizer section | |
| # For the equalizer to work you need to set the sound output through the equalizer with pavucontrol | |
| # another way is to set the equalizer as the default sink but this is no recommended | |
| # since some applications can perform with laggy sound |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Section "InputClass" | |
| Identifier "Touchpad" # required | |
| MatchIsTouchpad "on" # required | |
| Driver "synaptics" # required | |
| Option "MinSpeed" "0.5" | |
| Option "MaxSpeed" "2.75" | |
| Option "AccelFactor" "0.085" | |
| Option "TapButton1" "1" | |
| Option "TapButton2" "2" # multitouch | |
| Option "TapButton3" "3" # multitouch |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # Install GMP first | |
| # On Debian install build-essential and libxml2-dev | |
| ./configure | |
| make -j4 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # Install GMP first, at least version 4.1} | |
| # You will need curl installed too | |
| curl http://www.mpfr.org/mpfr-3.1.5/allpatches | patch -N -Z -p1 | |
| ./configure | |
| make -j4 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # Need to install m4 first. In Debian, | |
| # apt install m4 | |
| ./configure --enable-assert --enable-assert --enable-fft | |
| make -j4 |