Skip to content

Instantly share code, notes, and snippets.

@dieterdemeyer
dieterdemeyer / wsl-setup.md
Created December 17, 2020 18:05 — forked from imfing/wsl-setup.md
WSL + ZSH + Hyper Setup

My WSL Setup

A guide to setup your WSL with Hyper and zsh

Download & Install the WSL

  • Follow the very thorough instructions here

Get a prettier terminal

  • Download Hyper.js here - I went with the 'hyperblue' theme.
@dieterdemeyer
dieterdemeyer / click.oscript
Created May 15, 2018 10:57 — forked from wkoszek/click.oscript
Clicking "Allow" button in System Preferences via Screen Sharing
# This is clicking "Allow" in System Preferences "Security & Privacy" screen
# when you're on Screen Sharing. Otherwise it doesn't work.
# To fix:
# - Put "Security & Privacy" window in the top left screen
# - open a Terminal on a side
# - save click.oscript
# - Run: osascript click.oscript
#
# The mouse click you send should hit "Allow" button. You may need to move the window a little bit.
# Script originally from: https://discussions.apple.com/thread/3708948

Keybase proof

I hereby claim:

  • I am dieterdemeyer on github.
  • I am dieterdemeyer (https://keybase.io/dieterdemeyer) on keybase.
  • I have a public key ASB6HRvLdyfMK7CzlZ8KpRDwJgc7uUKLydBEp-a8s7r6pgo

To claim this, I am signing this object:

@dieterdemeyer
dieterdemeyer / ansibootstrap.sh
Last active January 14, 2019 18:34
Wrapper around ansible osx provisioning
#!/bin/bash
BGreen='\e[1;32m' # Green
BRed='\e[1;31m' # Red
Color_Off='\e[0m' # Text Reset
function setStatusMessage {
printf "${IRed} --> ${BGreen}$1${Color_Off}\n" 1>&2
}
function triggerError {