diff --git a/.config/aliasrc b/.config/aliasrc index 2a89531..5afa3d3 100644 --- a/.config/aliasrc +++ b/.config/aliasrc @@ -15,8 +15,6 @@ alias du='du -h' alias free='free -h' -alias gpg2-decrypt='function _gpg2-decrypt(){ gpg2 --output ${1%".gpg"} --decrypt $1; }; _gpg2-decrypt' -alias gpg2-encrypt='function _gpg2-encrypt(){ gpg2 --output $1.gpg --encrypt $1; }; _gpg2-encrypt' alias grep='grep --color=auto' alias hist-grep='history 0 | grep ' @@ -25,23 +23,12 @@ alias ls='ls -Flh --color=auto' alias lsblk='lsblk -o +PARTLABEL -o +FSTYPE' -alias mail-alias='function _mail-alias(){ echo "$1-$(uuidgen)@relay.msrg.cc"; }; _mail-alias' alias make='make -j5' -alias md5='ms5' -alias md5sum-dir='function _md5sum-dir(){ find $1 -type f -exec md5sum {} \; | md5sum; }; _md5sum-dir' alias pacman-autoremove='pacman -Rns $(pacman -Qtdq)' alias qutebrowser-kiosk='qutebrowser -B $XDG_DATA_DIR/qutebrowser-kiosk -C $XDG_CONFIG_DIR/qutebrowser/config-kiosk.py' alias sudo='sudo ' -alias synced-repos-status=' - echo "dotfiles" && dotfiles status; - echo "\n\ndotfiles-mail" && dotfiles-mail status; - echo "\n\npass git" && pass git status -' alias rm='rm -I --one-file-system -v' - -alias vim-grep='function _vim-grep(){ vim $(grep $@) }; _vim-grep' -alias vim-find='function _vim-find(){ vim $(find $@) }; _vim-find' diff --git a/.local/bin/gpg2-decrypt b/.local/bin/gpg2-decrypt new file mode 100755 index 0000000..3413168 --- /dev/null +++ b/.local/bin/gpg2-decrypt @@ -0,0 +1,3 @@ +#!/usr/bin/env bash + +gpg2 --output ${1%".gpg"} --decrypt $1 diff --git a/.local/bin/gpg2-encrypt b/.local/bin/gpg2-encrypt new file mode 100755 index 0000000..dbdf905 --- /dev/null +++ b/.local/bin/gpg2-encrypt @@ -0,0 +1,3 @@ +#!/usr/bin/env bash + +gpg2 --output $1.gpg --encrypt $1 diff --git a/.local/bin/vim-find b/.local/bin/vim-find new file mode 100755 index 0000000..5c48dc3 --- /dev/null +++ b/.local/bin/vim-find @@ -0,0 +1,3 @@ +#!/usr/bin/env bash + +vim $(find $@) diff --git a/.local/bin/vim-grep b/.local/bin/vim-grep new file mode 100755 index 0000000..05d4b35 --- /dev/null +++ b/.local/bin/vim-grep @@ -0,0 +1,3 @@ +#!/usr/bin/env bash + +vim $(grep $@)