mirror of
https://github.com/arthur-pbty/arthur-os.git
synced 2026-08-01 20:28:16 +02:00
* Add full OSC 52 support to Alacritty configuration * Simplify OSC 52 support addition in Alacritty config --------- Co-authored-by: David Heinemeier Hansson <david@hey.com>
12 lines
252 B
Bash
12 lines
252 B
Bash
echo "Add full OSC 52 support to Alacritty"
|
|
|
|
ALACRITTY_CONFIG=~/.config/alacritty/alacritty.toml
|
|
|
|
if [[ -f $ALACRITTY_CONFIG ]] && ! grep -q 'osc52' "$ALACRITTY_CONFIG"; then
|
|
cat >> "$ALACRITTY_CONFIG" << 'EOF'
|
|
|
|
[terminal]
|
|
osc52 = "CopyPaste"
|
|
EOF
|
|
fi
|