Files
arthur-os/migrations/1771002522.sh
T
88c8695ee5 Add full OSC 52 support to Alacritty configuration (#4603)
* 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>
2026-02-20 17:32:37 +01:00

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