Use shortcut other than Ctrl+P for Play?

Hi! I would like to hit a different key for “Play” in Unity Editor, as Ctrl+P is not always as easy to find when the Vive headset is on with camera throughput for SteamVR. Is there any way to remap this on e.g. Windows 10? Alternatively, is it possible to create a really big Play button? Thanks!

@JPhilipp

Unfortunately not. But you can write and editor script to create an alternate key like the following (this script make the F5 function key automatically play the game when pressed)

using UnityEngine;
using UnityEditor;
using System.Collections;

public class UnityExtededShortKeys : ScriptableObject
{
    [MenuItem("HotKey/Run _F5")]
    static void PlayGame()
    {
        EditorApplication.ExecuteMenuItem("Edit/Play");
    }
}