From a97753ba423595985b719dab6c3c354ab1852833 Mon Sep 17 00:00:00 2001 From: Salt Date: Thu, 4 Jan 2018 23:19:36 -0600 Subject: [PATCH] Zsh: Add support for a little shell splash --- .profile-head | 1 + .zshrc | 3 +++ 2 files changed, 4 insertions(+) create mode 100755 .profile-head diff --git a/.profile-head b/.profile-head new file mode 100755 index 00000000..1a248525 --- /dev/null +++ b/.profile-head @@ -0,0 +1 @@ +#!/bin/sh diff --git a/.zshrc b/.zshrc index d98a6f5d..919c50ab 100644 --- a/.zshrc +++ b/.zshrc @@ -53,3 +53,6 @@ source $ZSH/oh-my-zsh.sh if [[ -f "$HOME/.profile" ]]; then source "$HOME/.profile" 2>& /dev/null fi +if [[ -f "$HOME/.profile-head" ]]; then + source "$HOME/.profile-head" +fi