From bab71a17cdc545d381febc339c62875c24cf36dd Mon Sep 17 00:00:00 2001 From: Felix Buehler Date: Tue, 27 Jan 2026 00:07:16 +0100 Subject: [PATCH] shell/command-not-found: remove --- install.conf.yaml | 1 - shell/command-not-found.sh | 13 ------------- 2 files changed, 14 deletions(-) delete mode 100755 shell/command-not-found.sh diff --git a/install.conf.yaml b/install.conf.yaml index 188ef43..e9384b5 100644 --- a/install.conf.yaml +++ b/install.conf.yaml @@ -43,7 +43,6 @@ ~/.profile.d/20-cd.sh: shell/cd.sh ~/.profile.d/40-extract.sh: shell/extract.sh ~/.profile.d/40-mysqlpw.sh: shell/mysqlpw.sh - ~/.profile.d/80-command-not-found.sh: shell/command-not-found.sh ~/.profile.d/81-fzf.sh: shell/fzf.sh ~/.profile.d/82-direnv.sh: shell/direnv.sh ~/.profile.d/90-keychain.sh: shell/keychain.sh diff --git a/shell/command-not-found.sh b/shell/command-not-found.sh deleted file mode 100755 index 13cd193..0000000 --- a/shell/command-not-found.sh +++ /dev/null @@ -1,13 +0,0 @@ -#!/bin/sh - -# arch -if [ "${BASH_VERSION}" ] && [ -r /usr/share/doc/pkgfile/command-not-found.bash ]; then - # shellcheck source=/dev/null - . /usr/share/doc/pkgfile/command-not-found.bash -fi - -if [ "${ZSH_VERSION}" ] && [ -r /usr/share/doc/pkgfile/command-not-found.zsh ]; then - # shellcheck source=/dev/null - . /usr/share/doc/pkgfile/command-not-found.zsh -fi -