Hello fellows,
I’ve recently switched to Bspwm and of course Sxhkd too, I use an Azerty keyboard and sxhkd seams to be a bit confused. For example in my sxhkdrc file to close a window:
alt + q
bspc node -c
… but I have to type “a” instead of “q”.
Another strange thing happens when I reload sxhkd config, the shift key acts differently if I want to switch workspaces. I’d like to use the keypad but how to? Any idea ? thx.
Here’s my .xinitrc
#!/bin/sh
if [ -d /etc/X11/xinit/xinitrc.d ]; then
for f in /etc/X11/xinit/xinitrc.d/*.sh; do
[ -x “$f” ] && . “$f”
done
fi[ -r /etc/X11/xinit/.Xmodmap ] && xmodmap /etc/X11/xinit/.Xmodmap
[ -r ~/.Xmodmap ] && xmodmap ~/.Xmodmap
[ -r ~/.Xresources ] && xrdb -merge ~/.Xresources
[ -r ~/.xprofile ] && . ~/.xprofileif [ “$(command -v xset)” >/dev/null 2>&1 ]; then
xset s off -dpms
finumlockx on &
_check() {
command -v "$1" > /dev/null
}
_check sxhkd && sxhkd -c “$HOME”/.config/sxhkd/sxhkdrc{,_bspc} &
exec bspwm