mirror of
https://github.com/arthur-pbty/arthur-os.git
synced 2026-08-01 20:28:16 +02:00
6 lines
224 B
Bash
6 lines
224 B
Bash
echo "Enable middle-click primary paste for GTK/Chromium-family apps (Ghostty, Brave, Chromium)"
|
|
|
|
if command -v gsettings >/dev/null; then
|
|
gsettings set org.gnome.desktop.interface gtk-enable-primary-paste true || true
|
|
fi
|