This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Quck setup guide for MonoGame on Web | |
# Install the template | |
dotnet new --install MonoGame.Template.Bridge.CSharp | |
# Generate the project | |
dotnet new mgbridge | |
# Build the project | |
msbuild |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Moved to: | |
https://github.com/cra0zy/code-nautilus | |
since people want to add features to it and no notification arrive from comments on gist. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 (); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[Wallpaper] | |
http://roberto-miak.deviantart.com/art/Black-Rock-Shooter-Wallpaper-245395503 | |
[Theme] | |
Gtk: https://github.com/solus-cold-storage/evopop-gtk-theme.git | |
Icon: https://github.com/snwh/paper-icon-theme.git or http://samuelhewitt.com/paper/download | |
Shell: https://github.com/snwh/paper-gtk-theme.git or http://samuelhewitt.com/paper/download | |
[Extensions] | |
https://extensions.gnome.org/extension/448/remove-rounded-corners/ |