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 characters
{ | |
"AWSEBDockerrunVersion": "1", | |
"Image": { | |
"Name": "<AWS_ACCOUNT_ID>.dkr.ecr.us-east-1.amazonaws.com/<NAME>:<TAG>", | |
"Update": "true" | |
}, | |
"Ports": [ | |
{ | |
"ContainerPort": "443" | |
} |
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 characters
#!/bin/sh | |
# automon.sh -- automatically configures multiple monitors. | |
# | |
# I use this script on Arch Linux. This handles my personal monitor setup more | |
# correctly and robustly than either Ubuntu or Windows 7, however it is only | |
# designed to work on my laptop. | |
# | |
# On that laptop it always calls "xrandr" using the exactly the same arguments. | |
# The --auto option in xrandr is clever enough to do the rest. One day this | |
# script might become more flexible. |