Poor man's multihead management.
mont r
put external 1080p monitor to the right of laptop's built-in 4K monitor.mont s
use built-in monitor only.mont a
automatically choose among the above 2 setups.
# Output of command: | |
# kubectl get events -n debug --field-selector reason=FailedScheduling -o yaml ~ | |
apiVersion: v1 | |
items: | |
- action: Scheduling | |
apiVersion: v1 | |
eventTime: "2020-07-16T05:34:23.503432Z" | |
firstTimestamp: null | |
involvedObject: | |
apiVersion: v1 |
ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIKSNKR+74qlNBILXvsD9xZfCijA2C6ubOLF5+Jv/i4lS [email protected] |
[filter] | |
irc_smart = on;*;irc_smart_filter;* | |
irc_join_topic_date_names_creation = on;*;irc_332,irc_333,irc_366,irc_329,irc_372;* |
# /etc/X11/xorg.conf.d/90-custom-kbd.conf | |
Section "InputClass" | |
Identifier "keyboard defaults" | |
MatchIsKeyboard "on" | |
Option "XKbOptions" "caps:swapescape" | |
EndSection |
var makeArray = Function.prototype.call.bind(Array.prototype.slice) | |
function chaining(actions, initialParams) { | |
var action = actions.shift() | |
if (!action) return | |
function innerCallback(err) { | |
initialParams.shift() | |
var newParams = makeArray(arguments) | |
, passingParams = newParams.concat(initialParams) |