diff options
| author | Mike Vink <mike@pionative.com> | 2024-05-25 18:11:52 +0200 |
|---|---|---|
| committer | Mike Vink <mike@pionative.com> | 2024-05-25 18:11:52 +0200 |
| commit | 3af5fc5f86848924d49d30ecb8f5c2b960c9b1af (patch) | |
| tree | 570d24bf3a5a23cd1556a116446e847b69eed38f /mut/bin | |
| parent | eb8e0fa7ccdc2b8b28b344b18ef2f081553f91e9 (diff) | |
zshcmd and opaque Zathura
Diffstat (limited to 'mut/bin')
| -rwxr-xr-x | mut/bin/zshcmd | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/mut/bin/zshcmd b/mut/bin/zshcmd new file mode 100755 index 0000000..1a2fc88 --- /dev/null +++ b/mut/bin/zshcmd @@ -0,0 +1,10 @@ +#!/usr/bin/env zsh +if [ -f ~/.zshrc ]; then + source ~/.zshrc &>/dev/null +fi + +# Enable alias expansion +setopt aliases + +# Run your commands that use aliases +eval ${@} |
