This file contains 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
<!-- Color Scheme for iTerm2 --> | |
<?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>Ansi 0 Color</key> | |
<dict> | |
<key>Alpha Component</key> | |
<real>1</real> | |
<key>Blue Component</key> |
This file contains 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/bash | |
# | |
# Provides some basic utilities for VPN connections using the Cisco AnyConnect CLI. | |
readonly cmd="${1}" | |
readonly vpn="${2}" | |
readonly anyconnect="/opt/cisco/anyconnect/bin/vpn" | |
readonly configfile="${HOME}/.vpn/config" | |
This file contains 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/bash | |
# | |
# Provides some basic utilities for VPN connections. | |
readonly cmd="${1}" | |
readonly vpn="${2}" | |
err() { | |
echo "$*" >&2 |
This file contains 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
#!/usr/bin/env bash | |
# | |
# Install commonly used tools for development on MacOS. | |
# Install Homebrew | |
curl -fsSL https://raw.githubusercontent.com/Homebrew/install/HEAD/install.sh | |
brew tap homebrew/cask-versions | |
# Required applications (antivirus, encryption, communication, ...) | |
brew install --cask -y \ |