You could map that symbol to a key of your choice with xmodmap but it won't survive the next setxkbmap. It would be the easiest though.
Use xev to find the keycode.
Code:
$ xev
Press a key (in this example F12):
KeyPress event, serial 38, synthetic NO, window 0x2a00001,
root 0x25e, subw 0x0, time 50952254, (89,60), root:(1191,80),
state 0x0, keycode 96 (keysym 0xffc9, F12), same_screen YES,
XLookupString gives 0 bytes:
XmbLookupString gives 0 bytes:
XFilterEvent returns: False
KeyRelease event, serial 38, synthetic NO, window 0x2a00001,
root 0x25e, subw 0x0, time 50952398, (89,60), root:(1191,80),
state 0x0, keycode 96 (keysym 0xffc9, F12), same_screen YES,
XLookupString gives 0 bytes:
XFilterEvent returns: False
Map the key with xmodmap:
Code:
$ xmodmap -e "keycode 96 = bar"
* 96 (F12) is just an example.
Bookmarks