您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

13 行
194B

  1. #!/bin/sh
  2. pgrep -x dmenu && exit
  3. choice=$(echo "gb" | dmenu -i -p "Please type the keymap you wish to use:") || exit 1
  4. if [ -z $choice ]; then
  5. setxkbmap us
  6. else
  7. setxkbmap $choice
  8. fi