I using the LOOX U with using Arch Linux + LXDE. It's fairly comfortable.
$ sudo localectl set-x11-keymap jp pc106
$ logout
| #!/bin/sh | |
| echo -e "-- Removing exited containers --\n" | |
| docker ps --all --quiet --filter="status=exited" | xargs --no-run-if-empty docker rm --volumes | |
| echo -e "\n\n-- Removing untagged images --\n" | |
| docker rmi --force $(docker images | awk '/^<none>/ { print $3 }') | |
| echo -e "\n\n-- Removing volume directories --\n" | |
| docker volume rm $(docker volume ls --quiet --filter="dangling=true") |
| # For Android JellyBean and newer device | |
| adb shell content update --uri content://settings/system --bind value:s:0.0 --where 'name="window_animation_scale"' | |
| adb shell content update --uri content://settings/system --bind value:s:0.0 --where 'name="transition_animation_scale"' | |
| adb shell content update --uri content://settings/system --bind value:s:0.0 --where 'name="animator_duration_scale"' | |
| # For Android ICS and older device | |
| adb shell "echo \"update system set value=0.0 where name='window_animation_scale';\" | sqlite3 /data/data/com.android.providers.settings/databases/settings.db" | |
| adb shell "echo \"update system set value=0.0 where name='transition_animation_scale';\" | sqlite3 /data/data/com.android.providers.settings/databases/settings.db" |
| FROM java:8 | |
| MAINTAINER Masanori Ohgita | |
| # NOTE: This Dockerfile was forked from following projects. | |
| # https://github.com/denlabo/dockerfile-android-project - Modified by Ohgita on denLabo LLC | |
| # https://github.com/gfx/docker-android-project - Authored by FUJI Goro (MIT License) | |
| ENV DEBIAN_FRONTEND noninteractive | |
| # Install dependencies |
| #!/bin/bash | |
| set -e | |
| echo -e "Image Converter for Slack Emoji\nNOTICE: The image will be overwritten." | |
| if [ $# -lt 1 ]; then | |
| echo "USAGE:" | |
| echo -e " ${0} IMG_FILE [IMG_FILE...]\n" | |
| echo "IMG_FILE:" |
| #!/bin/bash | |
| ip=` ip --oneline --family inet address show dev wlp8s0 | cut -d' ' -f7 | cut -d '/' -f1` | |
| echo "-- Watching on ${ip}:6666 --" | |
| nc -u -l -p 6666 |
| /** | |
| * Simplest API Server for Google Home Notifier | |
| * https://gist.github.com/mugifly/22af0d55ccf4099becd44165f6500196/ | |
| * Thanks for https://github.com/noelportugal/google-home-notifier | |
| **/ | |
| 'use strict'; | |
| // Language to speak |
| // ESP8266 + DS18B20 One-Wire Temperature Sensor (Works with Hass.io) | |
| // https://gist.github.com/mugifly/8e5a0aa81ca4a2485b2c2b46e0968fc6 | |
| #include <ESP8266WiFi.h> | |
| #include <WiFiClientSecure.h> | |
| #include <OneWire.h> | |
| #include <DallasTemperature.h> | |
| #include <timer.h> | |