diff options
author | JozanLeClerc <bousset.rudy@gmail.com> | 2022-04-24 15:24:29 +0200 |
---|---|---|
committer | JozanLeClerc <bousset.rudy@gmail.com> | 2022-04-24 15:24:29 +0200 |
commit | e9a0557b5ce31065858a7f756c014e29a4b34fe2 (patch) | |
tree | 5d82bc8b0057299af7fe497c437147b3888d3c3d | |
parent | mutt update (diff) | |
download | dotfiles-bsd-e9a0557b5ce31065858a7f756c014e29a4b34fe2.tar.gz dotfiles-bsd-e9a0557b5ce31065858a7f756c014e29a4b34fe2.tar.bz2 dotfiles-bsd-e9a0557b5ce31065858a7f756c014e29a4b34fe2.tar.xz dotfiles-bsd-e9a0557b5ce31065858a7f756c014e29a4b34fe2.tar.zst dotfiles-bsd-e9a0557b5ce31065858a7f756c014e29a4b34fe2.zip |
fix
-rw-r--r-- | .config/zsh/alias.zsh | 3 | ||||
-rwxr-xr-x | .local/bin/hddmnt | 2 |
2 files changed, 2 insertions, 3 deletions
diff --git a/.config/zsh/alias.zsh b/.config/zsh/alias.zsh index 7331821..20dc114 100644 --- a/.config/zsh/alias.zsh +++ b/.config/zsh/alias.zsh @@ -18,8 +18,7 @@ tree() { } alias \ e='editorcmd' \ - et='editermcmd' \ - vim='editermcmd' \ + vim='editorcmd' \ c='clear' \ less='less --tabs 4' \ bc='bc -l' \ diff --git a/.local/bin/hddmnt b/.local/bin/hddmnt index 8f7a515..126a036 100755 --- a/.local/bin/hddmnt +++ b/.local/bin/hddmnt @@ -1,4 +1,4 @@ -#!/usr/local/bin/dash -e +#!/bin/sh -e tmp=$(mktemp) |