Adapted from here.
Get Fn F5/F6 working:
sudo emacs etc/default/grub
Change the following: GRUB_CMDLINE_LINUX_DEFAULT="quiet splash acpi_osi="
sudo update-grub
reboot the system... Now the splash screen should show up.
| # Based off this answer http://stackoverflow.com/a/17880517/1172409 | |
| # Ideally one wouldn't parse the output of iw scan (it may be subject to change), | |
| # but dealing with learning libnl which iw uses seems overly complicated - more so than updating this in case iw does change. | |
| # A few things that could be improved: | |
| # Better padding solution for prettier pretty printing. | |
| # Sort APs based off signal strength from best to worst. | |
| # Usage - iw must be run as root (suggestion: add as an alias in bashrc): | |
| # iw wlp8s0 scan | awk -f scan.awk |
Adapted from here.
Get Fn F5/F6 working:
sudo emacs etc/default/grub
Change the following: GRUB_CMDLINE_LINUX_DEFAULT="quiet splash acpi_osi="
sudo update-grub
reboot the system... Now the splash screen should show up.
| package com.mridang.dashbar; | |
| import android.graphics.Bitmap; | |
| import android.graphics.Canvas; | |
| import android.graphics.Color; | |
| import android.graphics.Paint; | |
| import android.graphics.PorterDuff; | |
| import android.graphics.PorterDuffXfermode; | |
| import android.graphics.Typeface; | |
| import android.os.Environment; |