forgit: fix setting env logic

This commit is contained in:
Hoang Nguyen 2021-05-03 15:50:23 +03:00
parent 0423ec56e6
commit 622b6e4e63
No known key found for this signature in database
GPG Key ID: 813CF484F4993419
3 changed files with 24 additions and 18 deletions

View File

@ -674,13 +674,15 @@ if [ ! -f "$BASH_COMPLETION_USER_DIR/plugins/forgit.plugin.bash" ]; then
fi
source $BASH_COMPLETION_USER_DIR/plugins/forgit.plugin.sh
if [ "$XDG_SESSION_TYPE" = "wayland" ]; then
export FORGIT_COPY_CMD="wl-copy"
elif [ "$XDG_SESSION_TYPE" = "x11" ]; then
if command -v xclip >/dev/null; then
export FORGIT_COPY_CMD="xclip -selection clipboard"
if [ -n "$XDG_SESSION_TYPE" ]; then
if [ "$XDG_SESSION_TYPE" = "wayland" ]; then
export FORGIT_COPY_CMD="wl-copy"
else
export FORGIT_COPY_CMD="xsel -i -b"
if command -v xclip >/dev/null; then
export FORGIT_COPY_CMD="xclip -selection clipboard"
else
export FORGIT_COPY_CMD="xsel -i -b"
fi
fi
fi

View File

@ -101,13 +101,15 @@ set -gx _ZO_RESOLVE_SYMLINKS 1
# set -gx _ZL_ROOT_MARKERS ".git,.svn,.hg,.root,package.json,.projectile,.pro"
# set -gx RANGER_ZLUA $HOME/.config/fish/z.lua
# forgit
if test $XDG_SESSION_TYPE = "wayland"
set -gx FORGIT_COPY_CMD wl-copy
else if test $XDG_SESSION_TYPE = "x11"
if command -v xclip >/dev/null
set -gx FORGIT_COPY_CMD "xclip -selection clipboard"
if test -n "$XDG_SESSION_TYPE"
if test $XDG_SESSION_TYPE = "wayland"
set -gx FORGIT_COPY_CMD wl-copy
else
set -gx FORGIT_COPY_CMD "xsel -i -b"
if command -v xclip >/dev/null
set -gx FORGIT_COPY_CMD "xclip -selection clipboard"
else
set -gx FORGIT_COPY_CMD "xsel -i -b"
end
end
end
# nnn

View File

@ -387,13 +387,15 @@ export ABBR_USER_ABBREVIATIONS_FILE="$HOME/.local/share/zsh/abbreviations"
# gencomp
export GENCOMP_DIR=$XDG_DATA_HOME/zsh/completions
# forgit
if [ "$XDG_SESSION_TYPE" = "wayland" ]; then
export FORGIT_COPY_CMD="wl-copy"
elif [ "$XDG_SESSION_TYPE" = "x11" ]; then
if command -v xclip >/dev/null; then
export FORGIT_COPY_CMD="xclip -selection clipboard"
if [ -n "$XDG_SESSION_TYPE" ]; then
if [ "$XDG_SESSION_TYPE" = "wayland" ]; then
export FORGIT_COPY_CMD="wl-copy"
else
export FORGIT_COPY_CMD="xsel -i -b"
if command -v xclip >/dev/null; then
export FORGIT_COPY_CMD="xclip -selection clipboard"
else
export FORGIT_COPY_CMD="xsel -i -b"
fi
fi
fi