links.fish 314 B

12345678910111213
  1. set -l files 'checkbox' 'radio'
  2. set -l states 'unchecked' 'checked' 'mixed'
  3. set -l sub_states 'active' 'hover' 'insensitive'
  4. for f in $files;
  5. for s in $states;
  6. ln -sf ../../assets/$f-$s.png ./assets/$f-$s.png
  7. for i in $sub_states;
  8. ln -sf ../../assets/$f-$s-$i.png ./assets/$f-$s-$i.png
  9. ;end
  10. ;end
  11. ;end