kwriteconfig5 --file ~/.config/kwinrc --group ModifierOnlyShortcuts --key Meta "org.kde.lattedock,/Latte,org.kde.LatteDock,activateLauncherMenu"
qdbus org.kde.KWin /KWin reconfigure
Binding to Expose All or Present Windows
| # import config. | |
| # You can change the default config with `make cnf="config_special.env" build` | |
| cnf ?= config.env | |
| include $(cnf) | |
| export $(shell sed 's/=.*//' $(cnf)) | |
| # import deploy config | |
| # You can change the default deploy config with `make cnf="deploy_special.env" release` | |
| dpl ?= deploy.env | |
| include $(dpl) |
kwriteconfig5 --file ~/.config/kwinrc --group ModifierOnlyShortcuts --key Meta "org.kde.lattedock,/Latte,org.kde.LatteDock,activateLauncherMenu"
qdbus org.kde.KWin /KWin reconfigure
Binding to Expose All or Present Windows
| <?xml version="1.0" encoding="UTF-8"?> | |
| <!DOCTYPE fontconfig SYSTEM "fonts.dtd"> | |
| <!-- | |
| Noto Mono + Color Emoji Font Configuration. | |
| Currently the only Terminal Emulator I'm aware that supports colour fonts is Konsole. | |
| Usage: | |
| 0. Ensure that the Noto fonts are installed on your machine. | |
| 1. Install this file to ~/.config/fontconfig/conf.d/99-noto-mono-color-emoji.conf |
ssh -D 1337 -q -C -N <user>@ip -v
| FROM golang:1.9 as ecr-helper | |
| RUN go get -u github.com/awslabs/amazon-ecr-credential-helper/ecr-login/cli/docker-credential-ecr-login | |
| WORKDIR /go/src/github.com/awslabs/amazon-ecr-credential-helper | |
| RUN make | |
| FROM busybox as busybox | |
| RUN which busybox | |
| FROM portainer/portainer:latest | |
| ENV HOME=/ |
| const httpProxy = require('http-proxy') | |
| const proxy = httpProxy.createProxyServer() | |
| const API_URL = process.env.API_URL || 'https://api.mydomain.com' | |
| export default function(req, res, next) { | |
| proxy.web(req, res, { | |
| target: API_URL | |
| }) | |
| } |
| version: "3.2" | |
| services: | |
| zero: | |
| image: dgraph/dgraph:latest | |
| volumes: | |
| - ./.data/dgraph:/dgraph | |
| ports: | |
| - 5080:5080 |
| { | |
| "title": "Use CAPS LOCK for vi navigation", | |
| "rules": [ | |
| { | |
| "description": "CAPS LOCK + awsd to arrow keys; CAPS+c to ESC; CAPS+2 to SHIFT+FN+F6", | |
| "manipulators": [ | |
| { | |
| "type": "basic", | |
| "from": { | |
| "key_code": "c", |
| clear Lock | |
| keycode 66 = Mode_switch | |
| keysym a = a A Left | |
| keysym d = d D Right | |
| keysym w = w W Up | |
| keysym s = s S Down | |
| keysym q = q Q Home | |
| keysym e = e E End | |
Add acpi_enforce_resources=lax to grub command line option
/etc/default/grub
GRUB_DEFAULT=0
GRUB_TIMEOUT_STYLE=hidden
GRUB_TIMEOUT=0
GRUB_DISTRIBUTOR=`lsb_release -i -s 2> /dev/null || echo Debian`
GRUB_CMDLINE_LINUX_DEFAULT="quiet splash acpi_enforce_resources=lax"
GRUB_CMDLINE_LINUX=""