-
-
Save CosmoAbdon/e1c166adda3a177105b9b47e8614e805 to your computer and use it in GitHub Desktop.
Revisions
-
joaquimpedro revised this gist
Aug 3, 2015 . 1 changed file with 1 addition and 0 deletions.There are no files selected for viewing
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 charactersOriginal file line number Diff line number Diff line change @@ -8,6 +8,7 @@ Habilitar modo grafico: service lightdm start Editar /etc/default/grub GRUB_CMDLINE_LINUX_DEFAULT="quiet splash acpi_osi=" For ubuntu -> acpi_backlight=vendor -
joaquimpedro created this gist
Jul 5, 2015 .There are no files selected for viewing
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 charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,28 @@ * Funcionar controle brilho da tela Entrar no modo texto desabilitar o modo grafico: service lightdm stop Reconfigurar o modo grafico: X -configure Copiar arquivo xorg.conf para /etc/X11/xorg.conf Habilitar modo grafico: service lightdm start Editar /etc/default/grub GRUB_CMDLINE_LINUX_DEFAULT="quiet splash acpi_osi=" * Ligar e desligar as luzes do teclado(Somente super usuário) Liga echo 5 > /sys/class/leds/samsung\:\:kbd_backlight/brightness Desliga echo 0 > /sys/class/leds/samsung\:\:kbd_backlight/brightness *Ativar WIFI após suspensão Criar arquivo: /etc/pm/sleep.d/10_resume_wifi #!/bin/sh case "${1}" in resume|thaw) nmcli nm sleep false ;; esac