Skip to content

Instantly share code, notes, and snippets.

View GeorgeA93's full-sized avatar
😎
😸 🚀

George Allen GeorgeA93

😎
😸 🚀
View GitHub Profile
@harry-cpp
harry-cpp / Game1.cs
Created December 27, 2015 12:42
VSCode + MonoGame
class Game1 : Game
{
protected override void LoadContent()
{
#if DEBUG
var proc = new Process();
proc.StartInfo.FileName = "/bin/bash";
proc.StartInfo.Arguments = "-c \"wmctrl -r 'Terminal' -b add,below && wmctrl -r '" + Window.Title + "' -b add,above\"";
proc.StartInfo.UseShellExecute = false;
proc.Start ();