diff --git a/dot_bashrc b/dot_bashrc index b06064a..9ce07c7 100644 --- a/dot_bashrc +++ b/dot_bashrc @@ -24,6 +24,27 @@ fi if hash zoxide 2>/dev/null; then alias cd="z" fi +if hash fd 2>/dev/null;then + alias find="fd" +fi +if hash numbat 2>/dev/null; then + alias bc="numbat" +fi +if hash sd 2>/dev/null; then + alias sed="sd" +fi +if hash dust 2>/dev/null; then + alias du="dust" +fi +if hash tealdeer 2>/dev/null; then + alias tldr="tealdeer" +fi +if hash hexyl 2>/dev/null; then + alias hexdump="hexyl" +fi +if hash xdg-open 2>/dev/null; then + alias start="xdg-open" +fi alias update="eget -D; . $HOME/.config/eget/post_install.sh" alias rc="source ~/.bashrc" if hash eza 2>/dev/null; then diff --git a/dot_config/eget/eget.toml b/dot_config/eget/eget.toml index 9181627..36a6b0b 100644 --- a/dot_config/eget/eget.toml +++ b/dot_config/eget/eget.toml @@ -77,4 +77,18 @@ # target = "~/.local/bin/podman" #["89luca89/lilipod"] -# target = "~/.local/bin/lilipod" \ No newline at end of file +# target = "~/.local/bin/lilipod" + +["sharkdp/numbat"] + asset_filters = [ "gnu", ".tar.gz" ] + +["sharkdp/hexyl"] + asset_filters = [ "gnu", ".tar.gz" ] + +["chmln/sd"] + asset_filters = [ "gnu", ".tar.gz" ] + +["bootandy/dust"] + asset_filters = [ "gnu", ".tar.gz" ] + +["tealdeer-rs/tealdeer"] \ No newline at end of file diff --git a/dot_config/zsh/dot_zshrc b/dot_config/zsh/dot_zshrc index 70fe677..3c4a8cb 100644 --- a/dot_config/zsh/dot_zshrc +++ b/dot_config/zsh/dot_zshrc @@ -21,6 +21,10 @@ alias cd="z" alias cat="bat -p" alias find="fd" alias bc="numbat" +alias sed="sd" +alias du="dust" +alias tldr="tealdeer" +alias hexdump="hexyl" alias start="xdg-open" alias update-mirrors="rate-mirrors arch | sudo tee /etc/pacman.d/mirrorlist; rate-mirrors chaotic-aur | sudo tee /etc/pacman.d/chaotic-mirrorlist" alias update="paru; flatpak update"