Skip to content

Instantly share code, notes, and snippets.

View founderio's full-sized avatar

Oliver Kahrmann founderio

View GitHub Profile
diff --git a/PKGBUILD b/PKGBUILD
index ef98efb..24df4f4 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -2,12 +2,13 @@
pkgname=nbtexplorer
pkgver=2.7.6
-pkgrel=2
+pkgrel=3
From e5be69b215053c296425e2d248e93ab007681e97 Mon Sep 17 00:00:00 2001
From: Oliver Kahrmann <oliver.kahrmann@gmail.com>
Date: Sun, 29 Mar 2020 17:01:48 +0200
Subject: [PATCH] Update to python3 dependencies
---
PKGBUILD | 12 +++++++-----
1 file changed, 7 insertions(+), 5 deletions(-)
diff --git a/PKGBUILD b/PKGBUILD
From 63f287df2c9d81946dda118a3af9c3634bbe8621 Mon Sep 17 00:00:00 2001
From: Oliver Kahrmann <oliver.kahrmann@gmail.com>
Date: Sat, 25 Jan 2020 20:35:41 +0100
Subject: [PATCH] Install & use app icon to support icon themes
Hardcoding an icon path prevents icon themes
from correctly replacing the app icon.
---
PKGBUILD | 11 ++++-------
ganttproject.desktop | 2 +-
@founderio
founderio / globalEventHandler.cs
Last active May 27, 2018 10:12
Unity Editor global hotkeys as of 2018.1
[InitializeOnLoad]
public static class StaticEvents {
static StaticEvents() {
FieldInfo globalEventHandler = typeof(EditorApplication).GetField("globalEventHandler", BindingFlags.Static | BindingFlags.NonPublic);
var value = (EditorApplication.CallbackFunction)globalEventHandler.GetValue(null);
value += () => {
// Triggers for EVERYTHING
var e = Event.current;