Skip to content

Instantly share code, notes, and snippets.

View drewhoener's full-sized avatar

Drew Hoener drewhoener

View GitHub Profile
@livingspeedbump
livingspeedbump / TADA68_WhiteFox-Vanilla.kbd.json
Last active April 2, 2017 23:24
TADA68/WhiteFox Vanilla
[
{
"name": "TADA68/WhiteFox Vanilla"
},
[
{
"c": "#0084c2"
},
"Esc",
"!\n1",
@fracek
fracek / CMakeLists.txt
Last active May 12, 2024 17:13
CMake and GTK+ 3
# Thanks to @danger89 and @Ilothar for updating the gist.
# Set the name and the supported language of the project
project(hello-world C CXX)
# Set the minimum version of cmake required to build this project
cmake_minimum_required(VERSION 3.10)
# Use the package PkgConfig to detect GTK+ headers/library files
find_package(PkgConfig REQUIRED)
pkg_check_modules(GTK REQUIRED gtkmm-3.0)