Skip to content

Instantly share code, notes, and snippets.

@fidergo-stephane-gourichon
Created January 1, 2020 09:54
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save fidergo-stephane-gourichon/153ef6c0626eb0750314fe897adb9bf2 to your computer and use it in GitHub Desktop.
Save fidergo-stephane-gourichon/153ef6c0626eb0750314fe897adb9bf2 to your computer and use it in GitHub Desktop.
Bug in xfconf-query regarding setting keys shortcuts?
# Let's query some keyboard shortcut
xfconf-query -c xfce4-keyboard-shortcuts -p '/xfwm4/default/<Alt><Shift>Tab' ; echo $?
cycle_reverse_windows_key
0
# So far so good.
# Let's remove that shortcut.
xfconf-query -c xfce4-keyboard-shortcuts -p '/xfwm4/default/<Alt><Shift>Tab' -r
# Behavior when trying shortcut is correct: shortcut no longer works, which is intended.
# But xfconf-query does not say so:
xfconf-query -c xfce4-keyboard-shortcuts -p '/xfwm4/default/<Alt><Shift>Tab' ; echo $?
cycle_reverse_windows_key
0
# Bug?
@fidergo-stephane-gourichon
Copy link
Author

Xubuntu 19.10 AMD64 with included XFCE, v4.14.

@fidergo-stephane-gourichon
Copy link
Author

Interestingly, content of xfce4-keyboard-shortcuts.xml appears correct.

  <property name="&lt;Alt&gt;&lt;Shift&gt;Tab" type="empty"/>

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment