From bc8e4f4900343e79f5047b92c0de025141933063 Mon Sep 17 00:00:00 2001 From: hgw Date: Tue, 3 Oct 2023 06:04:47 -0700 Subject: [PATCH] Add .zshrc-macos --- .zshrc-macos | 33 +++++++++++++++++++++++++++++++++ 1 file changed, 33 insertions(+) create mode 100644 .zshrc-macos diff --git a/.zshrc-macos b/.zshrc-macos new file mode 100644 index 0000000..157f780 --- /dev/null +++ b/.zshrc-macos @@ -0,0 +1,33 @@ +# --- OH-MY-ZSH --- +export ZSH="/Users/USER/.oh-my-zsh" +ZSH_THEME="philips" +zstyle ':omz:update' mode auto +zstyle ':omz:update' frequency 7 +plugins=(git) +source $ZSH/oh-my-zsh.sh + +# --- ALIAS --- +alias wipe='exiftool -all=' +alias comp='imageoptim' +alias traceroute='traceroute -a -w 2' +alias ls="ls -lhs --color --group-directories-first" +alias lsa="ls -lhsa --color --group-directories-first" +alias gcs="git commit -S -m" +hf() { + curl -F file=@$1 https://hardfiles.org | pbcopy +} +hfs() { + filename=/Users/$(whoami)/.scrot/$(cat /dev/urandom | LC_ALL=C tr -dc 'a-zA-Z0-9' | fold -w 50 | head -n 1).png + screencapture -i $filename + hf $filename +} +hft() { + filename=/Users/$(whoami)/.scrot/$(cat /dev/urandom | LC_ALL=C tr -dc 'a-zA-Z0-9' | fold -w 50 | head -n 1).txt + nano $filename + hf $filename +} + +# --- PATH --- +#Uncomment as needed +#export PATH="/Users/$(whoami)/flutter/bin:$PATH" +#export PATH="/usr/local/opt/llvm/bin:$PATH" \ No newline at end of file