mirror of
https://github.com/js0ny/dotfiles.git
synced 2025-12-21 16:53:00 +00:00
12 lines
338 B
Bash
12 lines
338 B
Bash
# $DOTFILES/platforms/linux/zshrc
|
|
# Date: 2024-12-22
|
|
# Author: js0ny
|
|
# Sourced by user's zshrc if is Linux 在用户的 zshrc 中被引用
|
|
# Entry point in $DOTFILES/tools/zsh/common.zshrc (入口点)
|
|
|
|
if [ -n "$WAYLAND_DISPLAY" ]; then
|
|
alias clip="wl-copy"
|
|
alias paste="wl-paste"
|
|
elif [ -n "$DISPLAY" ]; then
|
|
alias clip="xclip"
|
|
fi
|