1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677 |
- #!/usr/bin/env bash
- #
- # password-store wrapper to disable clipboard managers
- # Copyright (C) 2020 Distopico <distopico@riseup.net>
- #
- # This program is free software: you can redistribute it and/or modify
- # it under the terms of the GNU General Public License as published by
- # the Free Software Foundation, either version 3 of the License, or
- # (at your option) any later version.
- #
- # This program is distributed in the hope that it will be useful,
- # but WITHOUT ANY WARRANTY; without even the implied warranty of
- # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- # GNU General Public License for more details.
- #
- # You should have received a copy of the GNU General Public License
- # along with this program. If not, see <http://www.gnu.org/licenses/>.
- #
- # Description:
- # --------------
- # Simple wrapper of password-store aka 'pass'
- # that prevent save copy history in some clipboard managers.
- #
- # supported:
- # - clipmenu
- # - greenclip
- #
- # Requirements:
- # --------------
- # - pass
- #
- # Usage:
- # ---------------
- # Just add an alias e.g:
- #
- # alias pass="/path/to/script/passp"
- #
- PASS_CMD="/usr/bin/pass"
- CLIPMENU_CTL_CMD='clipctl'
- CLIPMENU_DAEMON_CMD='clipmenud'
- GREENCLIP_DAEMON_CMD='greenclip daemon'
- function _pgrep() {
- if ! [[ -x "$(command -v pgrep)" ]]; then
- # Set pgrep fallback
- ps axf | grep "$1" | grep -v grep | awk '{print $1}'
- else
- pgrep -f "$1"
- fi
- }
- # If has greenclip process active
- processId="$(_pgrep "$GREENCLIP_DAEMON_CMD")"
- if ! [[ -z $processId ]]; then
- kill -20 $processId
- $PASS_CMD "$@"
- exit_code=$?
- greenclip print ' '
- kill -18 $processId
- exit $exit_code
- fi
- # if has clipmenud process active
- processId="$(_pgrep "$CLIPMENU_DAEMON_CMD")"
- if ! [[ -z $processId ]]; then
- $CLIPMENU_CTL_CMD disable
- $PASS_CMD "$@"
- exit_code=$?
- $CLIPMENU_CTL_CMD enable
- exit $exit_code
- fi
- # Default pass if not clipboard is ruining
- $PASS_CMD "$@"
|