mirror of
https://git.disroot.org/FollieHiyuki/dotfiles.git
synced 2024-12-02 04:08:30 -05:00
forgit: fix setting env logic
This commit is contained in:
parent
93800d7ac4
commit
0d71225bcd
@ -674,14 +674,16 @@ 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
|
||||
if [ -n "$XDG_SESSION_TYPE" ]; then
|
||||
if [ "$XDG_SESSION_TYPE" = "wayland" ]; then
|
||||
export FORGIT_COPY_CMD="wl-copy"
|
||||
elif [ "$XDG_SESSION_TYPE" = "x11" ]; then
|
||||
else
|
||||
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
|
||||
|
||||
# If I don't want starship
|
||||
|
@ -101,14 +101,16 @@ 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"
|
||||
if test -n "$XDG_SESSION_TYPE"
|
||||
if test $XDG_SESSION_TYPE = "wayland"
|
||||
set -gx FORGIT_COPY_CMD wl-copy
|
||||
else if test $XDG_SESSION_TYPE = "x11"
|
||||
else
|
||||
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
|
||||
if command -v nnn >/dev/null
|
||||
|
@ -387,14 +387,16 @@ 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
|
||||
if [ -n "$XDG_SESSION_TYPE" ]; then
|
||||
if [ "$XDG_SESSION_TYPE" = "wayland" ]; then
|
||||
export FORGIT_COPY_CMD="wl-copy"
|
||||
elif [ "$XDG_SESSION_TYPE" = "x11" ]; then
|
||||
else
|
||||
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
|
||||
|
||||
# PATH
|
||||
|
Loading…
Reference in New Issue
Block a user