Ultimate iCade Raspberry Pi bartop arcade mod – Part V – buttons

Like I wrote in my previous article “Replace iCade buttons with high quality SANWA buttons” I had a little time on my hands over the weekend to replace the buttons.

I have oredered 6 Sanwa OSBF-30 buttons from eBay for $15.99 with free shipping and you can choose the colors even from this store:

New 6pcs of Push Buttons OBSF-30 for Arcade Jamma Games parts free shipping Continue reading “Ultimate iCade Raspberry Pi bartop arcade mod – Part V – buttons”

Replace iCade buttons with high quality SANWA buttons

You may have followed my previous articles about modding iCade to create ultimate bartop arcade to fit all my retro gaming needs.

Here they are again in case you have missed them:

Ultimate iCade Raspberry Pi bartop arcade mod – Part IV – Stick
Ultimate iCade Raspberry Pi bartop arcade mod – Part III – LCD screen
Ultimate iCade Raspberry Pi bartop arcade mod – Part II – iCade cabinet
Ultimate iCade Raspberry Pi bartop arcade mod – Part I – The Hardware Continue reading “Replace iCade buttons with high quality SANWA buttons”

Bash zip all files in directory one by one in individual zips

If you like me have for example folder filled with NES rom files that end with .nes extension and you would like to zip them all up in individual files to save some space.

I use this one-liner to zip all my NES collection so that it will take less space on my USB stick when I transfer it to my bartop arcade running RetroPie:

for file in *.nes ; do zip "$file.zip" "$file"; done

Continue reading “Bash zip all files in directory one by one in individual zips”