Example "freewheeling" app that can be modified without restarting; useful starting point for further forks
on.keychord_press = function(chord)
	-- Handle hotkeys here.
	-- Example values of 'chord':
	--   * if you press ctrl + a: 'C-a'
	--   * if you press alt + a: 'M-a'
	--   * if you press cmd + a on Mac OS: 's-a'
	--   * if you press win + a on Windows: 's-a'
	--   * if you press shift + a: 'S-a'
	--   * if you press F1: 'f1'
	--   * if you press alt + ctrl + shift + cmd + a: 'C-M-S-s-a'. Subsets of keys always preserve that order.
	-- See https://love2d.org/wiki/KeyConstant for a complete list of key names
end