25'ten fazla konu seçemezsiniz Konular bir harf veya rakamla başlamalı, kısa çizgiler ('-') içerebilir ve en fazla 35 karakter uzunluğunda olabilir.

13 satır
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