Skip to content

Instantly share code, notes, and snippets.

View BerriJ's full-sized avatar
🌞

Jonathan Berrisch BerriJ

🌞
View GitHub Profile
@aarestu
aarestu / web2app
Last active February 3, 2023 02:16
one command to install Nativefier, create desktop app for any web site also make shortcut icon for you [tested on Pop!_OS]
#!/bin/bash
if ! command -v node &> /dev/null
then
echo "nodejs could not be found"
sudo apt install -y nodejs
fi
if ! command -v npm &> /dev/null
then
@itspngu
itspngu / keymap.c
Last active January 21, 2023 21:38
keymap.c file for DZ60 PCB / Including code to facilitate sending nonstandard keys such as those used in some European languages from ANSI boards using "Alt Codes" which would usually be entered through the numpad.
#include "dz60.h"
#define MODS_SHIFT_MASK (MOD_BIT(KC_LSHIFT)|MOD_BIT(KC_RSHIFT))
enum custom_keycodes {
KX_UMLAUT_A = SAFE_RANGE,
KX_UMLAUT_O,
KX_UMLAUT_U,
KX_UMLAUT_S,