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
| <?xml version="1.0" encoding="UTF-8"?> | |
| <!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd"> | |
| <plist version="1.0"> | |
| <dict> | |
| <key>ANSIBlackColor</key> | |
| <data> | |
| YnBsaXN0MDDUAQIDBAUGFRZYJHZlcnNpb25YJG9iamVjdHNZJGFyY2hpdmVyVCR0b3AS | |
| AAGGoKMHCA9VJG51bGzTCQoLDA0OVU5TUkdCXE5TQ29sb3JTcGFjZVYkY2xhc3NPECgw | |
| LjA4NjI3NDUwOTggMC4wOTQxMTc2NDcwNiAwLjEyOTQxMTc2NDcAEAKAAtIQERITWiRj | |
| bGFzc25hbWVYJGNsYXNzZXNXTlNDb2xvcqISFFhOU09iamVjdF8QD05TS2V5ZWRBcmNo |
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 | |
| # | |
| # Example script showing how to set up a VirtualBox VM from the terminal. This | |
| # creates an OpenBSD 6.2 VM suitable for use as a base image that can be | |
| # cloned. | |
| OS_TYPE=OpenBSD_64 | |
| HOSTNET=vboxnet0 | |
| MEMORY=1024 | |
| CPUS=1 |
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 | |
| export BLACK="\[\e[30m\]" | |
| export BRIGHT_BLACK="\[\e[1;30m\]" | |
| export RED="\[\e[31m\]" | |
| export BRIGHT_RED="\[\e[1;31m\]" | |
| export GREEN="\[\e[32m\]" | |
| export BRIGHT_GREEN="\[\e[1;32m\]" |