Skip to content

Instantly share code, notes, and snippets.

@bsdelf
Last active December 1, 2022 03:44
Show Gist options
  • Save bsdelf/be794d961cce72781dcec1e4a78c0724 to your computer and use it in GitHub Desktop.
Save bsdelf/be794d961cce72781dcec1e4a78c0724 to your computer and use it in GitHub Desktop.
how to customize xfce4-terminal shortcuts
% cat ~/.config/xfce4/terminal/accels.scm
(gtk_accel_path "<Actions>/terminal-window/new-tab" "<Super>t")
(gtk_accel_path "<Actions>/terminal-window/close-tab" "<Super>w")
(gtk_accel_path "<Actions>/terminal-window/copy" "<Super>c")
(gtk_accel_path "<Actions>/terminal-window/paste" "<Super>v")
(gtk_accel_path "<Actions>/terminal-window/search" "<Super>f")
(gtk_accel_path "<Actions>/terminal-window/prev-tab" "<Super>Left")
(gtk_accel_path "<Actions>/terminal-window/next-tab" "<Super>Right")
(gtk_accel_path "<Actions>/terminal-window/move-tab-left" "<Super><Shift>Left")
(gtk_accel_path "<Actions>/terminal-window/move-tab-right" "<Super><Shift>Right")
(gtk_accel_path "<Actions>/terminal-window/reset-and-clear" "<Super>k")
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment