openpgp4fpr:D4C501DA48EB797A081750939449C2F50996635F
aspe:keyoxide.org:M7RNSPH6GI4DYOQMX2CHV7GCAI
This file contains 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
#!/usr/bin/env python3 | |
import gi | |
import datetime | |
import os | |
os.environ['GDK_BACKEND'] = 'x11' | |
gi.require_version('Gtk', '3.0') | |
gi.require_version('Gdk', '3.0') |
This file contains 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
#!/usr/bin/env bash | |
# Copyright 2023 - Marco Trevisan | |
# Released under the GPLv3 terms | |
# | |
# A simple tool to simulate PAM authentication using SSSD smartcard settings. | |
# | |
# To be used with softhsm2 smart cards generators from | |
# https://gist.github.com/3v1n0/287d02ca8e03936f1c7bba992173d47a | |
# | |
# Origin: https://gist.github.com/3v1n0/d7bc0f10cf44a11288648ae9d228430d |
This file contains 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
#include <glib.h> | |
#include <json-glib/json-glib.h> | |
#include <stdio.h> | |
#include <stdlib.h> | |
#include <string.h> | |
#include <security/pam_appl.h> | |
#include <security/pam_modules.h> | |
/* expected hook */ | |
PAM_EXTERN int |
This file contains 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
#!/usr/bin/env bash | |
# Copyright 2023 - Marco Trevisan | |
# Released under the GPLv3 terms | |
# | |
# A simple tool to simulate PAM authentication using GDM smartcard settings. | |
# | |
# This can also be used in interactive mode to test GDM login from the UI, by | |
# setting the environment variable `WAIT`, so that the script will restart the | |
# gdm service and will allow the user to login it using its name and a provided | |
# `PIN` (123456 by default). |
This file contains 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
#!/usr/bin/env bash | |
# | |
# Use | |
# eval $(prefix-builder.sh [add|rm|prepend|append] folder) | |
# | |
# or Alias such as: | |
# function eval_cmd() { eval $($*); } | |
# alias build-prefix="eval_cmd prefix-builder.sh" | |
# alias add-build-prefix="eval_cmd prefix-builder.sh add" | |
# alias rm-build-prefix="eval_cmd prefix-builder.sh rm" |
This file contains 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
# Initial commit |
This file contains 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
import kotlinx.serialization.* | |
import kotlinx.serialization.descriptors.SerialDescriptor | |
import kotlinx.serialization.encoding.CompositeDecoder | |
import kotlinx.serialization.encoding.Decoder | |
import kotlinx.serialization.encoding.Encoder | |
import kotlinx.serialization.json.* | |
import kotlin.reflect.KType | |
import kotlin.reflect.full.isSubtypeOf | |
import kotlin.reflect.full.starProjectedType |
This file contains 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
#!/bin/bash | |
# Simple script to convert SVG icons to fitbit grayscale magic compatible PNGs | |
# Usage: convert-svg.sh [icons-path] | |
# | |
# Author: Marco Trevisan (Treviño) <[email protected]> | |
# Licensed under GPLv3 | |
PNG_SIZE=${PNG_SIZE:-80} | |
icons_path=${1:-$(dirname "$0")} |
NewerOlder