alias icon indicating copy to clipboard operation
alias copied to clipboard

[Feature Request] Check if shell is Bash or ZSH. Store and source accordingly.

Open qumberrizvi opened this issue 4 years ago • 2 comments

ZSH support can be added out of the box if you check for the active shell before-hand. This should tell you what shell is active:

if ! [ -z ${ZSH_VERSION+x} ]; then        shellrc = "~/.zshrc" else        shellrc = "~/.bashrc" fi

qumberrizvi avatar Aug 06 '20 06:08 qumberrizvi

Why not create a PR? I don't actively work on this project anymore but I would be happy to merge and create a release for you :)

unbelievableflavour avatar Aug 07 '20 06:08 unbelievableflavour

Sure, will. 😊

qumberrizvi avatar Aug 07 '20 06:08 qumberrizvi