dotfiles/.config/wm_scripts/layout.sh

23 lines
282 B
Bash
Raw Normal View History

2021-02-18 22:18:26 +08:00
#!/bin/bash
2021-05-23 14:32:27 +08:00
#
# Script to change Xorg layout.
#
2021-02-18 22:18:26 +08:00
# dmenu
#option=$(echo -e $options | dmenu -i)
2021-05-23 14:32:27 +08:00
2021-02-18 22:18:26 +08:00
# rofi emulation of dmenu
option=$(echo "1) US|2) Colemak" | rofi -dmenu -sep '|' -i)
echo $option
case $option in
1*)
setxkbmap us
;;
2*)
setxkbmap us -variant colemak
;;
esac