From 2180d0177895bef48b8aa8642e20bf1fba916e92 Mon Sep 17 00:00:00 2001 From: DenebTM Date: Tue, 28 May 2024 20:54:13 +0200 Subject: [PATCH] remove .bashrc --- .bashrc | 44 -------------------------------------------- 1 file changed, 44 deletions(-) delete mode 100644 .bashrc diff --git a/.bashrc b/.bashrc deleted file mode 100644 index fe18e79..0000000 --- a/.bashrc +++ /dev/null @@ -1,44 +0,0 @@ -# -# ~/.bashrc -# - -# If not running interactively, don't do anything -[[ $- != *i* ]] && return - -# kdesrc-build ################################################################# - -## Add kdesrc-build to PATH -export PATH="/usr/bin:$PATH" - -## Autocomplete for kdesrc-run -function _comp_kdesrc_run -{ - local cur - COMPREPLY=() - cur="${COMP_WORDS[COMP_CWORD]}" - - # Complete only the first argument - if [[ $COMP_CWORD != 1 ]]; then - return 0 - fi - - # Retrieve build modules through kdesrc-run - # If the exit status indicates failure, set the wordlist empty to avoid - # unrelated messages. - local modules - if ! modules=$(kdesrc-run --list-installed); - then - modules="" - fi - - # Return completions that match the current word - COMPREPLY=( $(compgen -W "${modules}" -- "$cur") ) - - return 0 -} - -## Register autocomplete function -complete -o nospace -F _comp_kdesrc_run kdesrc-run - -################################################################################ -