14

I want to swap Capslock with Backspace and came only so far as to mix them both together. By that I mean: hitting Capslock does work like the Backspace key, but also activates Caps (including the LED).

When I was using Gnome, the Keyboard Settings would let me easily do the switch. In XFCE these options are missing, so I tried via .Xmodmap and xkeycaps. Xkeycaps even lets me export the stuff to .Xmodmap, but somehow it does not work. I'm missing something here!

Current .Xmodmap (commented out because it gives errors "bad keysym in remove modifier list 'Caps_Lock', no corresponding keycodes", this was mostly described in forums)

keycode  66 = BackSpace
! remove Lock    = Caps_Lock
remove Mod5    = Mode_switch Mode_switch

Referencing xmodmap to load in .profile etc did not work either. I could live with installing the Gnome-Keyboard Settings tool on my xfce system, if nothing else helps - which package is it?

EDIT: setxkbmap -option caps:backspace works, BUT: key does not repeat on holding down UNLESS i use xmodmap -e "clear Lock" as well. Not quite elegant, but apparently working.

marto
  • 1,431

3 Answers3

22

To close this one, I'll add my current fix. Maybe someone can use it too. Put this in a script, autostart it with DE:

setxkbmap -option caps:backspace
setxkbmap -option shift:both_capslock
xmodmap -e "clear Lock"
marto
  • 1,431
1

You can actually make some changes to your keys exchange. Click on power icon, on the extreme top right hand corner of your screen. Select 'System Settings' and double-click on 'Keyboard Layout'. Locate 'Option' at the popup box and click on it. Look for 'CAPS Lock Key Behavior' and click on the arrow before that option, from the drop-down menu select 'Make Caps lock additional Backspace'. I hope that answers your question. Thank you.

all4naija
  • 1,554
0

When I swap keys in .xmodmap I always give two commands like this:

keycode key1 = function key2

keycode key2 = function key1

joschi
  • 1,794