#!/bin/sh
while true; do
  xdotool keydown w
  sleep 4
  xdotool keyup w
  xdotool keydown s
  sleep 4
  xdotool keyup s
done
