Skip to content

Instantly share code, notes, and snippets.

@blackjack75
Last active March 14, 2024 21:02
Show Gist options
  • Save blackjack75/96eea301088c2086e2a79718dfd83dce to your computer and use it in GitHub Desktop.
Save blackjack75/96eea301088c2086e2a79718dfd83dce to your computer and use it in GitHub Desktop.
xbindkeys commands to make Command + C / V / X do Control + Shift + C / V / X
"xdotool keydown Control_L keydown Shift_L sleep 0.1 key c keyup Shift_L keyup Control_L"
release+m:0x40 + c
"xdotool keydown Control_L keydown Shift_L sleep 0.1 key x keyup Shift_L keyup Control_L"
release+m:0x40 + x
"xdotool keydown Control_L keydown Shift_L sleep 0.1 key v keyup Shift_L keyup Control_L"
release+m:0x40 + v
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment