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
# Mac setup script | |
# By Sam Lester | |
# Originally based on https://gist.github.com/codeinthehole/26b37efa67041e1307db | |
# Usage: | |
# - Add email address and any additional apps to this file | |
# - Run sh ./mac-setup.sh | |
# - Run installers for apps that have them (Adobe Creative Cloud, Microsoft Office) | |
# - Install apps that aren't on cask (Magnet, Mactracker, iA Writer, Hand Mirror) |
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
{% macro srcset(image, desiredWidth, desiredHeight) %} | |
{%- spaceless %} | |
{# Calculate the widths #} | |
{% set width = desiredWidth %} | |
{% set width2x = desiredWidth * 2 %} | |
{# Calculate the heights if they exist #} | |
{% if desiredHeight %} | |
{% set height = desiredHeight %} |