#!/bin/sh

# takes nearly 3s to run, so you probably want to run it in the bg

# cant turn on for individual keys if all turned off and cant set
# for more than one key at once, so have to do it this way

xset r on
for k in \
10 11 12 13 14 15 16 17 18 19 \
24 25 26 27 28 29 30 31 32 33 \
38 39 40 41 42 43 44 45 46 \
52 53 54 55 56 57 58 \
20 59 60
do
  xset -r "$k"
done

