Skip to content

Instantly share code, notes, and snippets.

View GokuVegetaKrillin's full-sized avatar

GokuVegetaKrillin

View GitHub Profile
@GokuVegetaKrillin
GokuVegetaKrillin / snippets.cs
Created November 4, 2018 19:16
Running shell (bash) commands
using System;
using System.Diagnostics;
public static class ShellHelper
{
public static string Bash(this string cmd)
{
var escapedArgs = cmd.Replace("\"", "\\\"");
var process = new Process()
{
@GokuVegetaKrillin
GokuVegetaKrillin / snippets.cs
Created November 4, 2018 19:14
center window
win.SetPosition(WindowPosition.CenterAlways);