diff --git a/.gitignore b/.gitignore index 022d084..84b500e 100644 --- a/.gitignore +++ b/.gitignore @@ -3,8 +3,7 @@ lfm/.config/lfm/lfm.history lazygit/.config/jesseduffield/lazygit/state.yml lazygit/.config/**/*.patch -bin/.local/bin/mopen -bin/.local/bin/autobuild +bin/.local/bin/ fish/.config/fish/functions/pdl.fish fish/.config/fish/fishd.* @@ -34,4 +33,4 @@ vim/.vim/undo/ lazygit/.config/lazygit/state.yml nvim/.config/nvim/plugin/packer_compiled.lua nvim/.config/nvim/spell -vim/.vim/spell \ No newline at end of file +vim/.vim/spell diff --git a/bin/.local/bin/alm b/bin/.local/bin/alm deleted file mode 100755 index 8fd32ee..0000000 --- a/bin/.local/bin/alm +++ /dev/null @@ -1,16 +0,0 @@ -#!/usr/bin/env bash - -ISSUE_ID= - -while read line; do - if [[ "$line" == X-Redmine-Issue-Id:* ]]; then - ISSUE_ID=${line##*: } - fi -done - -if [[ $ISSUE_ID = "" ]]; then - echo No issue id found - exit 2 -else - nohup xdg-open "https://alm.waarp.fr/issues/$ISSUE_ID" 1>/dev/null 2>&1 & -fi diff --git a/bin/.local/bin/doc b/bin/.local/bin/doc deleted file mode 100644 index d2023d7..0000000 --- a/bin/.local/bin/doc +++ /dev/null @@ -1,22 +0,0 @@ -#!/usr/bin/env fish - -usage() { - - -switch $argv[1] - case new - echo "ERROR: Not Implemented" - case new-letter - echo "ERROR: Not Implemented" - case build - echo "ERROR: Not Implemented" - case '*' - usage -end - -# doc new-letter file.md -# doc new file.md -# doc build file.md - - - diff --git a/bin/.local/bin/git-f b/bin/.local/bin/git-f deleted file mode 100755 index 614a379..0000000 --- a/bin/.local/bin/git-f +++ /dev/null @@ -1,50 +0,0 @@ -#!/usr/bin/env bash - -#set -x - -usage() { - cat <