Skip to content

Instantly share code, notes, and snippets.

@MrPowerGamerBR
Created July 23, 2025 02:36
Show Gist options
  • Select an option

  • Save MrPowerGamerBR/a6fab8cf9e66c169d1c2330cc10e3ddc to your computer and use it in GitHub Desktop.

Select an option

Save MrPowerGamerBR/a6fab8cf9e66c169d1c2330cc10e3ddc to your computer and use it in GitHub Desktop.
A script that converts the x.com link in the clipboard to vxtwitter.com (KDE Plasma + Wayland)
#!/bin/bash
CLIPBOARD_CONTENT=$(wl-paste)
REPLACED=${CLIPBOARD_CONTENT/x.com/vxtwitter.com}
echo $REPLACED
wl-copy $REPLACED
kdialog --title "x.com to vxtwitter.com converter" --passivepopup $REPLACED 3
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment