From 426e82eff4fa044470e46c5ca829d610334ebf6b Mon Sep 17 00:00:00 2001 From: tiyn Date: Tue, 23 Dec 2025 05:55:08 +0100 Subject: [PATCH] sxhkd: changed keymap to use rctrl as compose key --- .local/bin/etc/sxhkd/keymap | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.local/bin/etc/sxhkd/keymap b/.local/bin/etc/sxhkd/keymap index 29e4c53..1451400 100755 --- a/.local/bin/etc/sxhkd/keymap +++ b/.local/bin/etc/sxhkd/keymap @@ -6,13 +6,13 @@ echo $variant case "$1" in toggle) if [ "$layout" = "de" -a "$variant" = "nodeadkeys" ] then - setxkbmap de && notify-send -u low 'SXHKD' 'Set keymap to german' + setxkbmap de -option compose:rctrl && notify-send -u low 'SXHKD' 'Set keymap to german' elif [ "$layout" = "de" -a "$variant" = "" ] then - setxkbmap de ru && notify-send -u low 'SXHKD' 'Set keymap to russian (german)' + setxkbmap de ru -option compose:rctrl && notify-send -u low 'SXHKD' 'Set keymap to russian (german)' elif [ "$layout" = "de" -a "$variant" = "ru" ] then - setxkbmap de nodeadkeys && notify-send -u low 'SXHKD' 'Set keymap to german (nodeadkeys)' + setxkbmap de nodeadkeys -option compose:rctrl && notify-send -u low 'SXHKD' 'Set keymap to german (nodeadkeys)' fi ;; *) cat << EOF keymap: cli script to change the keymap quickly.